python中如何重複列印很多遍?

joytoy發表於2021-09-11

python中如何重複列印很多遍?

python中重複列印很多遍的方法:

1、使用多個print()函式進行列印

strings = "a" # 字串變數
print(strings)
print(strings)
print(strings)
print(strings)

輸出結果如下:

python中如何重複列印很多遍?

2、使用迴圈

strings = "a" # 字串變數
for i in range(3):
    print(strings)

結果如下:

python中如何重複列印很多遍?

3、在輸出函式中將要輸出的內容*n

strings = "a" # 字串變數
print(strings * 5)

結果如下:

python中如何重複列印很多遍?

數字的話要預處理一下:

numbers = 8
print(numbers * 5)
print(str(numbers) * 5)

python中如何重複列印很多遍?

更多Python知識請關注欄目。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4650/viewspace-2833675/,如需轉載,請註明出處,否則將追究法律責任。

相關文章