Answer the question
In order to leave comments, you need to log in
What happens if you publish 1 game on google play every day?
Let's say that we have 365 ready-made games with descriptions, screenshots, all in aso feng shui, they are all different, for example, like ketchapp or voodoo. Will it be possible to publish 1 every day and so 365 days in a row?
Answer the question
In order to leave comments, you need to log in
No difference: all at once or every day one by one: the rules are the same.
Akk will not advance to the top from this.
Acc is promoted only for total active installs, stars, etc.
You do not have classes and not instances - but a mix.
You need something like:
class figura():
def __init__(self, x, y, colour):
self.x = x
self.y = y
self.colour = colour
class pewka(figura):
def __init__(self, x, y, colour):
super().__init__(x, y, colour)
self.type = "pewka"
class ladja(figura):
def __init__(self, x, y, colour):
super().__init__(x, y, colour)
self.type = "ladja"
fig1 = pewka('a', 1, 'red')
fig2 = ladja('a', 1, 'red')
if any_fig.colour = 'red':
...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question