2024/07/13
print() 関数は画面に出力できる関数です
print() 関数には 3 つの異なる用途があります。
任意のタイプの引用符を使用できますが、同じ行で異なる引用符を使用することはできません
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
ファイルとフラッシュパラメータ。これらのパラメータはファイルの処理を可能にするパラメータであるため
以上がPythonのPRINT関数の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。