python的基礎知識

2022-02-25 15:20:41 字數 897 閱讀 2522

1.注釋:單行注釋#

多行注釋'''  '''

2.定義變數和型別

3.變數的命名規則

4.關鍵字:python中的一些具有特殊功能的識別符號,就是關鍵字

常見的關鍵字有:

and     as      assert     break

class

continue

def del

elif

else except exec finally

forfrom

global

ifin import is

lambda not or pass

print raise

return

trywhile with yield

5.輸出:print()

6.輸入:input()

7.運算子:

8.資料型別轉換:

Python的基礎知識

python的基礎知識 用到 就記錄到 暫不分類,只彙總。1.python 獲得命令列引數的方法 如果想對python指令碼傳引數,python中對應的命令列引數是什麼呢?需要模組 sys 引數個數 len sys.argv 指令碼名 sys.argv 0 引數1 sys.argv 1 引數2 sy...

Python的基礎知識

a 1024 print 整數的定義 type a 兩條語句寫在一行則需要 分割,否則不用。b h print 字串的定義 type b c herbi print 字串的定義 type c d 3.22 print 浮點數的定義 type d e h b r b r print 列表的定義 typ...

Python的基礎知識

1.單行注釋 這是注釋 print hello world 注釋2 print 你好 2.多行注釋 這是乙個 多行注釋 python最具特色的就是使用縮進來表示 塊,不需要使用大括號 縮排的空格數是可變的,但是同乙個 塊的語句必須包含相同的縮排空格數。例項如下 例項 python 3.0 if tr...