1. python 獲取幫助 例如help('print') 退出幫助q鍵
2. 注釋使用#
print('hello world') #注意到print是乙個函式
3. 52.3e-4 其中e表示10的冪,python沒有單獨的long型別,int型別可以指任何大小的整數。
4. 可以使用單引號和雙引號指定字串
『將我這樣框進來』或『quote me on this』 "what's your name ?"
5. 使用三個引號"""或者'''來指定多行字串
6. 列印print函式,格式化列印方法.format()
# str_format.py
age = 20
name = 'swaroop'
print(' was years old when he wrote this book'.format(name, age))
print('why is playing with that python?'.format(name))
print('{} was {} years old when he wrote this book'.format(name, age))
print('why is {} playing with that python?'.format(name))
7. print預設加換行符\n ,可以用end=''指定以空白結尾
8. 轉義字元\,\t製表符。
9. 很長的**可以用反斜槓\拆成多個物理行
10. r或r來指定原始(raw)字串
r"newlines are indicated by \n"
11. 變數(variables) 不需要宣告或者定義資料型別
12. python將程式中的任何內容統稱為物件(object)
13. 預設乙個物理行就是邏輯行,若指多邏輯行加分號(;),不建議這樣用
14. 縮排4個空格表示乙個語句塊
# var.py
i = 5
print(i)
i = i + 1
print(i)
s = ''' this is a multi-line string.
this is the second line.'''
print(s)
輸出:5
6this is a multi-line string.
this is the second line.
第1章 python基礎
1.1表示式 在pyhon中,2 2稱為表示式,是值 變數和操作符的組合。單獨的乙個值也被看做乙個表示式,單獨的變數也是如此。語句是一段會產生效果的 單元,如建立新變數或者顯示乙個值 n 17 print n 第一行是乙個賦值語句,將值17賦給變數n 第二行是乙個print語句,顯示變數n的值 區別...
Cpp Primer 學習筆記 第1章
編號說明1 流iostream istream ostream std cin std cout 2控制流 while forif 3輸入數量不定 while std cin x 4std cin obj 需要根據obj資料結構實現資料輸入 比如,obj屬於結構體,則 0 1 2 3 12.3 為一...
Python學習筆記第3章 操作列表 1
一 遍歷整個列表 我們經常需要遍歷列表的所有元素,為了避免大量的重複 這裡我麼使用for迴圈來解決這些問題。實現 name chenchen weipeng jiangnan suqin for person in name print person 執行結果如下 chenchen weipeng ...