Python字符串及練習題

1.變量名命名規則 # 中文是可以作爲變量名的,但不建議 姓名 = "hello" print(姓名) # 變量名可以由字母,數字或者下劃線; # 變量名只能以字母或者下劃線組成; # 變量名不能是python的關鍵字: eg: if, elif, else, #   eg: while, for, break,continue,pass a_1hello = "hello" print(a_1h
相關文章
相關標籤/搜索