一、變量的定義ui
變量名只能是 字母、數字或下劃線的任意組合編碼
變量名的第一個字符不能是數字spa
如下關鍵字不能聲明爲變量名code
['and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'exec', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'not', 'or', 'pass', 'print', 'raise', 'return', 'try', 'while', 'with', 'yield']orm
單行註釋 #後均爲註釋內容,且爲了保證可讀性,#後添加一個空格,直接在代碼後註釋的時候,#前空兩個格blog
多行註釋 連續的三對引號(單引號雙引號均可以),多行註釋能夠當多行字符串utf-8
# -*-coding utf-8-*- 放在第一行,聲明使用的是utf8字符編碼字符串
一、利用+it
舉例:字符編碼
1 name = 「hui」 2 3 str = ''' 4 5 my name is '''+name+''',hahahh 6 '''
二、利用佔位符
1 name = "hui" 2 3 str = ''' 4 5 my name is %s,hahahh 6 7 '''%(name)
三、利用{} 經常使用
name = "hui" str = ''' my name is {_name},hahahh '''.format(_name=name)
1 if x == 1 : 2 print(x) 3 else : 4 print(x-1)
或者:
1 if x > 90 : 2 print("優秀") 3 elif x >60 and x<=90 : 4 print("良好") 5 else : 6 print("不及格")
while True : print("123")
for i in range(10) print(i)