Python Hello World

Jinku Hu 2022年12月21日 2018年1月29日
Python Hello World

我們 Python 學習之旅將從最基本的 Hello World 程式開始。

>>> print("Hello World!")
Hello World!

搞定!就是這麼簡單!你可以通過它的語法看到 Python 是多麼的簡答,它不需要包含類似 C\C++ 中的標頭檔案,也不需要定義任何主函式等等。你也不需要語句終止符,你只需用 print 以及在括號內的包含要列印的內容 Hello World

Python 基本語法

來看下面的兩個數字相乘的程式碼,

# Multiplying two numbers
x = 4
y = 2
result = x * y
print(result)
8

上述程式碼解釋

  1. 第一行是以 # 開頭的註釋。註釋是不被執行和被直譯器忽略的程式碼行,所以註釋不會干擾程式的正常流程。
  2. 下一行 x = 4 是變數的定義。變數的名稱是 x,它儲存了數值 4
  3. 同樣,y = 2 中,y 是一個儲存了數值 2 的變數。
  4. 此行 result = x * y,用於評估乘法表示式 x * y 並將結果儲存在變數 result 中。Python 中的乘法運算子是*運算子。
  5. print() 語句用於在螢幕上列印字串或變數值。

你可以在注意到這裡沒有大括號 {}(分隔符)等,在 Python 中使用縮排來分割程式碼塊。例如,如果你要建立一個類中包換其他兩個類,則需要使用如下的縮排。

class1:
    class2:
        statements
    class2:
        statements
Author: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn