皆さん、こんにちは。今日から Python を学び始めました。
インデント
if 10>1 print("Ten is greater than one")
同じ番号を使用する必要があります。コードの同じブロック内にスペースが含まれていないと、エラーが生成されます。
if 10>1 print("Ten is greater than one") print("Ten is lower than one")
スペースには異なる番号が使用されます。コードの 2 つの diff ブロック内のカウント。
if 5 > 2 print("Five is greater than two!") if 5 > 2 print("Five is greater than two!")
コメント
一行コメント
#print("Hello Python") print("Hello Python")
複数行のコメント
Python では複数行のコメントがありません。 Python を読み取るために無視したい各行には # を使用します。
#This is a comment #written in #just more than one line print("Hello, World!")
文字列が変数に割り当てられていない限り、Python はその行を読み取りますが、無視します。複数行のコメントを使用するには三重引用符を使用します。
""" This is a comment written in just more than one line """ print("Hello, World!")
以上がPython: インデント、コメントの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。