2024年7月13日
print()函數是一個允許我們輸出到螢幕的函數
print()函數有三種不同的用途;
我們可以使用任何人輸入的引號,不能在同一行使用不同的引號
print()---------------------------#create empty line
print("jothilingam")--------------#string should print with""
print(5)------------------------#number can print without ""
print("jo""jo")--------------print without space print("jo" "jo")--------------print without space answer jojo print("jo","jo")--------------print with space answer jo jo
使用 f 字串列印
name = "jothi" print(f"Hello {name}") # Output : Hello jothi
換行符\n
print("jo\nthi") jo thi
分隔參數
print("jo","jo",sep="_")...................sep="" is default answer jo_jo
print("jo", "lingam", sep='thi') answer jothilingam
結束參數
print("jothi",end="lingam") answer jothilingam
print("jothi",end="")----------------without space print("lingam") answer jothilingam
print("jothi",end=" ")----------------with space print("lingam") answer jothi lingam
* 範圍
print(*"jothilingam") answer j o t h i l i n g a m
file和flush參數,因為這些參數是允許我們處理文件的參數
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3