活動地址:CSDN21天學習挑戰賽
開頭一敘: 無論是以後學習需要或者是三年後的工作需要,都需要用到python的工具,也接著這次活動的機會,把python系統的學一遍。跟著大佬,讓python知識從入門到精通。
表示的定義需要滿足三條要求:
說明:保留字,也即關鍵字,是編程語言規定滿足特定標識的單詞或者字母,這些單詞或者字母我們不能定義為變量
['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']
注釋包括三種:
說明:若是在日後執行大型項目的時候,一行可能寫不下,可以用 “ \” 來表示
示例:
a=2*3 + \
3*4+\
4*5
print(a)
#結果:38
說明:正常輸出我們使用的print,默認輸出是換行的,如果不需要換行,在變量後面加上end=“”
#輸出
print("你好")
print("python")
print("hello",end="")
print("Python")
你好
python
helloPython