python_基礎_變數

20170405發表於2020-08-10

  一、變數

  1.1

  變數的命名規範

  只能使用數字字母下劃線,但是不能以數字開頭,不能使用關鍵字。

  1.2

  小駝峰命名法

  除第一個單詞之外,其他單詞首字母大寫。

  helloWorldMy = 1

  1.3

  大駝峰命名法

  大駝峰法把第一個單詞是大寫,後面的單詞首字母也大寫。

  HelloWorldMy = 1

  1.4

  下換線命名法

  my_functions = function

  1.4

  檢視python所有關鍵字

  import keyword

  l = keyword.kwlist

  print(l)

  #['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']

  1.5

  變數的定義

  name = 'perhaps'

  print(name)

  #perhaps

  1.6

  其他方式

  x = y =z = 1

  print(x,y,z)

  x,y,z = 1,2,3

  print(x,y,z)

  a,b,c = (1,2,3)

  print( a)  

  print(b)

  print(c)

  a,b,c = [1, 2, [1, 2, 3]]

  print(a)

  print(b)

  print(c)

  '''

  1 1 1

  1 2 3

  [1, 2, 3]

  Process finished with exit code 0


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69979119/viewspace-2710409/,如需轉載,請註明出處,否則將追究法律責任。

相關文章