為了簡單起見,我將其分為三個部分:
與 c、cpp 和 java 等其他程式語言不同,您不需要明確宣告變數的類型。此功能稱為動態輸入。
在 C 語言中,
int a = 6;
這裡,變數被宣告為整數。
但在Python中,
a = 6
且變數a可以重新宣告為
a = "hello world"
? ️注意:
變數名稱區分大小寫.,因此 a 和 A 被視為不同的變數。
a = 6 #valid _a = 6 #valid -a = 6 #invalid
a = 5 b = 6 a + b #11 print(_) #11
a, b, c = 5, 6, 7
global x def print(): return x #there will be no error
PI=3.14
print() 函數是一個內建的 Python 函數,用於將輸出顯示到控制台。
a=10000 print("hello world") #hello world print("hello", "world")#hello world print("hello world",a) #hello world 10000
列印函數中,有兩個主要參數。
範例:
print("hello world") print("hi") # hello world # hi
print("hello", "world", sep="-", end = " ") print("hi") # hello-world hi
有關列印的完整文檔,請按此處
print("hello\nworld") #hello #world print("hello\tworld") #hello world print("happy\trecking")#happy\trecking
x = 5 y = 10 print(f"x: {x}, y: {y}") # x: 5, y: 10
Python 中的 input() 函數用於從控制台取得使用者輸入。
int a = 6;
? ️注意:
預設情況下,input() 傳回字串,因此如果您需要將輸入用作不同類型(例如 int、float),則需要對其進行轉換。
a = 6
在即將發布的部落格中,我們將深入研究 Python 運算子和條件語句。快樂學習???
以上是掌握 Python 基礎知識日的詳細內容。更多資訊請關注PHP中文網其他相關文章!