關於變量的相關基礎筆記

1.聲明變量python

1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 
4 name= "wangshaohan"

  上述代碼聲明瞭一個變量,變量名爲: name,變量name的值爲:"wangshaohan"spa

  變量的做用:暱稱,其代指內存裏某個地址中保存的內容code

  變量定義的規則:blog

  變量名只能是 字母、數字或下劃線的任意組合內存

  變量名的第一個字符不能是數字utf-8

  如下python關鍵字不能作爲變量名it

  ['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']class

  變量名遵循:變量名不要太長,越短越好!import

  name1 = "wsh"變量

  name2 = name1

  name1和name2都等於"wsh"

相關文章
相關標籤/搜索