How about just adding a print statement before the while
loop and initializing indent
at 1 instead of 0?
indent = 1
indentIncreasing = True
try:
stars += "*" * userInput
print(stars + ' START!')
while True:
print(' ' * indent, end='')
print(stars)
time.sleep(0.1)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…