正如我們在上一節中學習到的,可以直接在命令列中編寫執行Python 的語法:
>>> print("Hello, World!") Hello, World!
或透過在伺服器上建立python 文件,使用.py 檔案副檔名,並在命令列中運行它:
C:\Users\Your Name>python myfile.py
縮排指的是程式碼行開頭的空格。
在其他程式語言中,程式碼縮排僅出於可讀性的考慮,而 Python 中的縮排非常重要。
Python 使用縮進指示程式碼區塊。
實例
if 5 > 2: print("Five is greater than two!")
執行實例
#如果省略縮進,Python 會出錯:
實例
語法錯誤:
if 5 > 2: print("Five is greater than two!")
運行實例
空格數取決於程式設計師,但至少需要一個。
實例
if 5 > 2: print("Five is greater than two!") if 5 > 2: print("Five is greater than two!")
執行實例
#您必須在同一程式碼區塊中使用相同數量的空格,否則Python 會出錯:
實例
語法錯誤:
if 5 > 2: print("Five is greater than two!") print("Five is greater than two!")
執行實例
Python 變數
在Python 中,變數是在為其賦值時創建的:
##實例##Python 中的變數:
x = 5 y = "Hello, World!"
#This is a comment. print("Hello, World!")
以上是Python語法實例程式碼分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!