相關訊息可參考 家豪教學網
參考 家豪教學網 print("is") 結果:This is 結果:This,is,a print("This is a book.", file=f) 結果:資料夾內 output.txt 檔案內容:This is a book. print("This is a book.", file=f, flush=True) 結果:資料夾內 output.txt 檔案內容:This is a book. 結果: 請輸入學號:_ 結果: 請輸入年齡:_ 結果: 請輸入體重:_ 設 x = 29, y = "This" 欄寬 12 ,向左對齊。 文字內定輸出靠左。(可省略<) 結果: |29 | |This | 結果: |29 | |This |欄寬 17 ,置中對齊。 結果: | 29 | | This | 結果: | 29 | | This |欄寬 8 ,向右對齊。 數字內定輸出靠右。(可省略>) 結果: | 29| | This| 結果: | 29| | This| + - * ** / // % = += -= *= **= /= //= %= > < == != >= <= != not and or x = -11.5 y = complex(-3, 4) print(abs(x), abs(y)) 結果: 11.5 5 ndigits 參數省略時,得到四捨五入轉整數。(相當於 int 轉型函數) num = 36.27634 num = round(num, 2) #四捨五入至小數第 2 位 print(num) 結果: 36.28 import math num = 36.801 num = math.ceil(num, 1) #無條件進位至小數第 1 位 print(num) 結果: 36.9 import math num = 36.99 num = math.floor(num) #無條捨去至整數。 print(num) 結果: 36 |