程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

[Python 21 Days Learning Challenge] - Essentials for Getting Started

編輯:Python

活動地址:CSDN21天學習挑戰賽

​開頭一敘: 無論是以後學習需要或者是三年後的工作需要,都需要用到python的工具,也接著這次活動的機會,把python系統的學一遍.跟著大佬,讓python知識從入門到精通.


文章目錄

        • 1、標識符
        • 2、保留字
        • 3、注釋
        • 4、多行語句
        • 5、輸出
        • 6、運算符
          • 6.1 關系運算符
          • 6.2 比較運算符
          • 6.3 邏輯運算符
          • 6.4 賦值運算符


1、標識符

The definition of a representation needs to satisfy three requirements:

  • The first character cannot be a digit and an underscore
  • Identifiers can be numbers except for the first character、下劃線、字母
  • Letters are case sensitive,A與a的定義不同

2、保留字

說明:保留字,i.e. keyword,It is a word or letter specified by a programming language that satisfies a specific identity,We cannot define these words or letters as variables

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

3、注釋

There are three types of annotations:

  • (1)單行注釋:#
  • (2)多行注釋:‘’’ {內容} ‘’’
  • (3)多行注釋:“”" {內容} “”"

4、多行語句

說明:If in the future when the implementation of large-scale projects,It may not fit on one line,可以用 “ \” 來表示

示例:

a=2*3 + \
3*4+\
4*5
print(a)
#結果:38

5、輸出

說明:The normal output we useprint,默認輸出是換行的,如果不需要換行,在變量後面加上end=“”

#輸出
print("你好")
print("python")
print("hello",end="")
print("Python")
你好
python
helloPython

6、運算符

6.1 關系運算符

6.2 比較運算符

6.3 邏輯運算符

6.4 賦值運算符


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved