參考
python.doc;
廖雪峰的python教程
使用 『\』將兩行**為一行:
if
1900
< year
< 2100
and1
<= month
<= 12 \
and1<= day
<= 31
and0
<= hour
< 24 \
and0<= minute
< 60
and0
<= second
< 60: # looks ike a valid date
return 1
『\』 後不能接注釋,不能用於拆分字串
()、、{}內的內容可以被切割成多個行,可以新增注釋,
month_names = ['januari', 'februari', 'maart', # these are the
'april', 'mei', 'juni', # dutch names
'juli', 'augustus', 'september', # for the months
'oktober', 'november', 'december'] # of the year
false
class
finally
is return
none continue
for lambda try
true def from nonlocal while
and del global
notwith
as elif if
oryield
assert else import pass
break
except
inraise
保留的識別符號型別(reserved classes of identifiers)
_**
__*
>>>
10 / 3
3.3333333333333335
>>>
9 / 3
3.0
>>> 10
// 3
3
>>>
10 % 3
1
python知識點整理
1 python列表和元祖 python包含6中內建的序列,即列表 元組 字串 unicode字串 buffer物件和xrange物件。通用序列操作 索引 分片 序列相加 乘法 成員資格 in 長度 len 最小值 min 和最大值 max 2 python字典 花括號 字典是另一種可變容器模型,且...
知識點整理
一 標準庫容器和演算法 1.順序容器 與前面類似 2.關聯容器 map和multimap 元素包含key 鍵 和值 value 兩部分 按照鍵對元素排序 map不允許重複元素出現,但multimap可以 set和multliset 是包含已排序物件的關聯容器 只是單純的鍵的集合 set不允許重複鍵出...
知識點整理
一 標準庫容器和演算法 1.順序容器 與前面類似 2.關聯容器 map和multimap 元素包含key 鍵 和值 value 兩部分 按照鍵對元素排序 map不允許重複元素出現,但multimap可以 set和multliset 是包含已排序物件的關聯容器 只是單純的鍵的集合 set不允許重複鍵出...