1. 程式人生 > >Python3學習(2)

Python3學習(2)

pass 列表 num and 屬性 als 保存 numbers return

字符串賦值引用特性
同一個字符串賦值給不同的變量,所有變量都是同一個對象

>> s = "abc"
>> s1 = "abc"
>> id(s)
34707248

>> id(s1)
34707248

>> id("abc")
34707248

>> s is s1
True

變量賦值

>> a = b = c = 3
>> a,b,c
(3, 3, 3)

>> a,b,c = 1,2,3
>> a,b,c
(1, 2, 3)

變量特性

變量可以重新賦值,變量保存的是值的引用,即值在內存中的地址,當變量被重新賦值後變量指向的地址就會變;會指向一個新的對象;

>> a = 5
>> id(a)
499805328
>> id(5)
499805328
>> a = 1000
>> id(a)
34452592

交換兩個變量的值

>> a,b = b,a

其他語言:

>> a,b = 1,2
>> temp = a
>> a = b
>> b = temp
>> a,b
(2, 1)

查看保留字,關鍵字模塊keyword

>> import keyword

>> print(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‘, ‘nonloc
al‘, ‘not‘, ‘or‘, ‘pass‘, ‘raise‘, ‘return‘, ‘try‘, ‘while‘, ‘with‘, ‘yield‘]

>> keyword.iskeyword("yield")
True

一行寫多個表達式,”;”

>> a = 1;b = 2;c = 3

代碼換行

>> a = 3\
... +3
>> a

判斷字符類型

>> isinstance(s,str)
True
>> isinstance(s,(str,bytes))
True

help 和 dir 命令
help可以查看對象的使用方法
dir 可以查看模塊或對象包含的屬性和方法

python3中的數據類型
Numbers 數字 ,python3中沒有long
--int
--float
--complex
str 字符串

list 列表

tuple 元組

dict 字典
set 集合
註釋
單行註釋用#
多行註釋用三引號”” ”””

Python3學習(2)