Python基礎 Python中的命名和關鍵字

2021-09-25 16:17:44 字數 915 閱讀 1161

---

----

----

----

----

----

----

----

----

----

----

----

----

----

----

----

----

- 注:如果你對python感興趣,我這有個學習python基地,裡面有很多學習資料,感興趣的+q群:688244617--

----

----

----

----

----

----

----

----

----

----

----

----

----

----

----

----

-

1.python中的關鍵字:

[『false』, 『none』, 『true』, 『and』, 『as』, 『assert』, 『break』, 『class』, 『continue』, 『def』, 『del』, 『elif』, 『else』, 『except』, 『finally』, 『for』, 『from』, 『global』, 『if』, 『import』, 『in』, 『is』, 『lambda』, 『nonlocal』, 『not』, 『or』, 『pass』, 『raise』, 『return』, 『try』, 『while』, 『with』, 『yield』]

2.python命名規則:

每個單詞都使用小寫字母

python識別符號區分大小寫

單詞與單詞之間使用_下劃線連線

python中基礎函式

strip函式 乙個初學者的最喜歡的函式,它的作用就是去掉 n 檔案的開啟分為兩種 一種是 withopen r as 另一種是 z open chr 97 a ord a 97 cmp 5,6 1 cmp 6,5 1 cmp 6,6 0 chr i for i in range 97,123 a ...

python基礎 python中的集合容器

list是python的乙個內建物件 1 list的特點 1 list列表是有序的,指的是新增順序和儲存順序是一致的,即先進先出,後進後出 2 list列表內的元素是可以重複的 3 list列表新增和刪除的速度比較慢 4 list列表的查詢速度比較快 5 list列表的第乙個元素的索引是從0開始的 ...

python學習基礎 python中的時間編碼

需要匯入時間模組 import time time.time print ts timetup time.localtime ts print timetup 返回乙個時間元組,ts是乙個時間戳 這是乙個元組,裡面有9個元素,分別對應不同的內容,以供提取 元組中元素的下標 代表的含義 存放的內容 值...