第一天 - 簡單的 Python 專案
print("Hello, World!")
什麼是Python?
Python 是一種流行的程式語言。它由 Guido van Rossum 創建,並於 1991 年發布。
它用在:
要檢查 Windows PC 上是否安裝了 python,請在開始列中搜尋 Python 或在命令列 (cmd.exe) 上執行以下命令:
C:\\Users\\_Your Name_\>python --version
要檢查您是否在 Linux 或 Mac 上安裝了 python,然後在 Linux 上開啟命令列,或在 Mac 上開啟終端機並輸入:
python --version
上一頁我們了解到,Python語法可以透過直接在命令列中編寫來執行:
>>> print("Hello, World!") Hello, World!
或透過在伺服器上建立 python 文件,使用 .py 檔案副檔名,並在命令列中運行它:
C:\Users\Your Name>python myfile.py
創建評論
註釋以#開頭,Python將忽略它們:
#This is a comment print("Hello, World!")
建立變數
Python 沒有宣告變數的指令。
變數在您第一次為其賦值時建立。
x = 5 y = "John" print(x) print(y)
變數可以有一個簡短的名稱(如 x 和 y)或更具有描述性的名稱(age、carname、total_volume)。 Python變數的規則:
全域變數
x = "awesome" def myfunc(): print("Python is " x) myfunc()
x = "awesome" def myfunc(): x = "fantastic" print("Python is " x) myfunc() print("Python is " x)
x = 1 # int y = 2.8 # float z = 1j # complex #convert from int to float: a = float(x) #convert from float to int: b = int(y) #convert from int to complex: c = complex(x) print(a) print(b) print(c) print(type(a)) print(type(b)) print(type(c))
隨機數
import random print(random.randrange(1, 10))
_切片的一個有趣的例子:
_
explain b = "Hello, World!" print(b[-5:-2])
Python
b =「你好,世界!」
該行分配字串「Hello, World!」到變數 b.
Python
印製(b[-5:-2])
這一行印出字串 b 的一部分。切片的工作原理如下:
讓我們用索引來視覺化字串:
你好世界 !
0 1 2 3 4 5 6 7 8 9 10 11 12
-13-12-11-10 -9 -8 -7 -6 -5 -4 -3 -2 -1
因此,b[-5:-2] 對應於字串「Hello, World!」中的字元 orl。
因此, print(b[-5:-2]) 的輸出將會是:
orl
Python 字串
在這裡獲取更多資訊
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3