Maybe something like this:
lines = int(input('How many lines?: '))
starCount="*"
for i in range(lines):
print(starCount)
starCount *= 2
solved Expotential growth of symbols in python?
Maybe something like this:
lines = int(input('How many lines?: '))
starCount="*"
for i in range(lines):
print(starCount)
starCount *= 2
solved Expotential growth of symbols in python?