本帖最後由 李泳霖 於 2023-5-1 10:56 編輯
語法
print(項目% (參數列))
%s 字串, %d 數值
%3d 代表3位數字, %3s 代表3個文字字串
%-3d 或%-3s 代表文字數字靠左對齊
%6.2f 代表6位數字,2位小數
例如:
print("pi:%.4f"%pi); #四捨五入至小數點後4位
print("pi:%.3f"%pi); #四捨五入至小數點後3位
print("pi:%.0f"%pi); #四捨五入至小數點後0位
print("pi:%8.2f"%pi); #指定總長度為8個字元&四捨五入至小數點後2位
print("pi:%010.2f"%pi); #指定總長度為10個字元&長度不足補0&四捨五入至小數點後2位
print("pi:%09.3f"%pi); #指定總長度為9個字元&長度不足補0&四捨五入至小數點後3位
本帖隱藏的內容需要回復才可以瀏覽 |