保留字即關鍵字,我們不能把它們用作任何識別符號名稱。python 的標準庫提供了乙個 keyword 模組,可以輸出當前版本的所有關鍵字
>>> import keyword
>>> keyword.kwlist
['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']
print() 預設輸出是換行的,如果要實現不換行需要在變數末尾加上 end=""。
print('菩提本無樹,')
print('明鏡亦非台。')
print('本來無一物,',end='')#不換行輸出,後兩行變一行
print('何處惹塵埃。')
#兩個變數交換值操作
變數1,變數2 = 變數2,變數1
a = 1
b = 2
a,b = b,a
> 1.獲取變數的值 —— 可直接通過變數名獲取 用法:變數名
> 2.檢視資料型別 使用type()函式 用法:type(變數名)
> 3.獲取變數在記憶體中的id標識 使用id()函式 > 用法:id(變數名)
verilog語法隨記
module host cpld 宣告host cpld的輸入輸出變數 input a0,b0,c0 宣告輸入埠a0,b0和c0 output a1,b1,c1 宣告輸出埠a1,b1和c1 reg x 0 reg是暫存器型別,表示需要觸發,無輸入時可保持原來數值 wire x wire是網線型別,表...
python語法隨記
1 sample 序列a,n 功能 從序列a中隨機抽取n個元素,並將n個元素生以list形式返回。2 字元對應的unicode值 ord 你的字元 3 unicode對應的字元 chr 2034 4 map 方法func,序列1,序列2,功能 將序列中每個元素依次作為方法func的引數,返回 fun...
Swif基礎語法01
import foundation 1,第乙個swift程式 println hello,world 2,定義常量 let a 10 let cinteger double 12.00 3,定義變數 var b 0 b 11 var bfloat float bfloat 11.0 println ...