1、由數字、字母、下劃線組成
2、不能以數字開頭
3、不能是#關鍵字(keyword.kwlist) - python已經定義好的,有自己特殊功能的
4、區分大小寫。
5、見名知意。
示例如下:
1、由數字、字母、下劃線組成:
handsome_01_ = '我每天對著鏡子說三遍"我很帥"!'
handsome = '我每天對著鏡子說三遍"我很帥"!'
pretty = '橋邊的姑娘'
pretty =''橋邊的姑娘''
cute = '我是很的可愛'
2、不能以數字開頭:
99sd =1^
syntaxerror: invalid syntax
99_01_sd =1^
syntaxerror: invalid decimal literal
3、不能是#關鍵字(keyword.kwlist) - python已經定義好的,有自己特殊功能的
none=1
print
(none
)# none = 1
^# syntaxerror: cannot assign to none
true=1
print
(true
)# true = 1
^# syntaxerror: cannot assign to true
檢視所有的關鍵字:help("keywords")
here is a list of the python keywords. enter any keyword to get more help
.false
break
fornot
none
class
from
ortrue
continue
global
pass __peg_parser__ def
ifraise
anddel
import
return
aselif
intry
assert
else
iswhile
async
except
lambda
with
await
finally
nonlocal
yield
4、區分大小寫
pretty =
'橋邊的姑娘很靚'
pretty =
'橋邊的姑娘很靚+10000'
pretty =
'橋邊的姑娘很靚'
print
(pretty)
# 若不區分大小寫則會報錯:如下
# nameerror: name 'pretty' is not defined
5、見名知意。
money =
100"蘋果"
age =
"年齡"
city =
'**'
#
ctrl + /
三個單引號 '''我每天都對著鏡子說,我很帥。。。'''
三個雙引號"""我每天都對著鏡子說,我很帥。。"""
go基礎筆記 基礎語法
package main import fmt 在函式外部不可以使用 來定義變數 定義包內部變數 var ii 11 定義包內部多個變數 var bb true ss hello world temp int 123 func variable func main package main impo...
CSS語法基礎筆記
css,層疊樣式表,cascadingstyle sheets,設計網頁樣式的語言。如何在頁面中使用css 有三大方法 內嵌樣式 內部樣式表 外部樣式表。內嵌樣式 在html標籤內使用,對該標籤單獨定義樣式。例如 stay hungry,stay foolish 內部樣式表 在標籤內插入 外部樣式表...
c 基礎語法筆記
1.成員訪問運算子 對於形如point mem的表示式,根據point的型別不同,其分別等價於 point mem point是乙個內建的指標型別 point.operator mem point是類的乙個物件2.運算優先順序 i 先運算,再執行加操作 i 相反 3.型別轉換 char轉int ch...