python按規(guī)則打印一組數(shù)字

代碼塊

for index, ball in enumerate(balls):
    print(f'{ball:0>2d}', end=' ')
    if index == len(balls) - 2:
        print('|', end=' ')

enumerate()

enumerate()函數(shù)意為循環(huán)計數(shù),獲得索引和值。

for index, ball in enumerate(balls)

for index, ball in enumerate(balls):index 是索引,ball是該索引對應(yīng)的值??梢栽趂or循環(huán)中使用。

print(f'{ball:0>2d}', end=' ')

print(f'{ball:0>2d}', end=' '){:0>2d}代表用兩個寬度的十進制顯示,已零補齊。

print(f'......')與format函數(shù)類似。f后面一定要跟緊字符串不能隔有空格。

end=''用來設(shè)定以什么結(jié)尾。

if index == len(balls) - 2:

if index == len(balls) - 2:意為判斷當(dāng)前索引是倒數(shù)第二個遍歷的。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容