Python學習筆記之基本語法

2021-09-30 01:10:48 字數 1177 閱讀 7768

編碼:

python 3 原始碼檔案以utf-8編碼,所有字串都是 unicode 字串

識別符號

保留字(關鍵字)

false,true, and, as, return, try, while, with, break, class, continue, else, finally, for, if, import,in,  not , or,

is,lambda,nonlocal,pass,raise,none,yield,assert,def,del,elif,except,from,global

注釋

單行注釋:以#開頭

#!/usr/bin/python3

# 第乙個注釋

print ("hello, python!") # 第二個注釋

多行注釋

#!/usr/bin/python3

# 第乙個注釋

# 第二個注釋

'''第三注釋

第四注釋

'''

"""第五注釋

第六注釋

"""print ("hello, python!")

行與縮排

多行語句

total = item_one + \

item_two

total = ['item_one', 'item_two', 'item_three',

'item_four', 'item_five']

空行

python學習筆記 python基本語法補充

我們之前在小插曲這篇博文中提到了中文編碼問題以及其解決方案。這裡再做一些補充。這個中文編碼問題之所以會出現,是python2.x沒有指定編碼形式而導致的。所以我們只需要在檔案開頭加上 coding utf 8 或者 coding utf 8即可。當然了,我也強調了,這是2.x的問題,所以對於3.x是...

python學習筆記(一)基本語法

1.print 與c語言不同的是,python的輸出語句為 print hello world 字串的引用對雙引號和單引號無要求,且無需分號 此外,乙個簡單的 號就可將兩個字串連線起來 print hello world 輸出為 hello world 而print hello 8 會報錯,因為加號...

Python 學習筆記之語法(一)

python對語法格式要求很嚴格,因此,在編寫時一定要注意這些問題,比如下面就是這樣的問題 traceback most recent call last file line 1,in file d anzhuang anaconda lib site packages spyderlib widg...