我最近開始學習Python,並且我有一個倒數計時器。它工作正常,但我想添加一個星號到輸出。添加星號到輸出
輸出的娛樂是:
Countdown timer: How many seconds? 4
4****
3***
2**
1*
Blast off
到目前爲止,我有:
import time
countDown = input('Countdown Timer: How many seconds?')
for i in range (int(countDown), 0, -1):
print (i)
time.sleep(1)
print ('BLAST OFF')
我找不到在YouTube或其他任何網站一樣堆棧溢出 –
任何你可以像'打印(STR(我實驗)+'*'* i')...這會將數字i轉換爲字符串並添加'*'i次 –