預設情況下,python以utf-8編碼,所有的字串都是unicode字串,可以為**定義不同的的編碼。
#coding:utf-8#or#-*- coding:utf-8 -*-
保留字及為關鍵字,不能作為任何識別符號名稱。檢視當前版本所有關鍵字:keyword模組
1 import keyword #匯入keyword模組2 keyword.kwlist
['false', 'none', 'true', 'and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'la
單行注釋:**中以#開頭的行即為注釋,程式在執行時不會執行該行
多行注釋:"""多行注釋""" or '''多行注釋''
#這是乙個注釋'''這是第二個注釋
'''"""
這是第3個注釋
"""
python中有資料型別:布林型、整型、長整型、浮點型、字串、列表、元組、字典、日期
布林型(bool): true / false,任何數值的0,空字串,空列表,空元組(),空字典{}都是false,函式或方法返回值為空的同為false,其他資料都為true。
in [4]: bool(true)out[4]: true
in [5]: bool(false)
out[5]: false
in [6]: bool(0)
out[6]: false
in [8]: bool() #空列表
out[8]: false
in [9]: bool(()) #空元組
out[9]: false
in [10]: bool({}) #空字典
out[10]: false
in [12]: bool(1)
out[12]: true
.................
整數(int):範圍-2**31 到2**31-1,超出這個範圍的為長整型
字串(str):被引號括起來的都是字串
#type():檢視資料型別in [13]: type("hello world")
out[13]: str
in [14]: type("123")
out[14]: str
標準輸出,print()預設輸出是換行的,如果要實現不換行,需在末尾加上 end=""
>>>print("hello world!",end="","hello python!") #不換行輸出>>>hello world! hello python!
開始Python Python基礎(2)
7 string 1 字串引號和轉義字元 l string 可以用單引號或雙引號包含,其中使用到引號,可以用 轉義 let s go let s go hello,world she said hello,world she said l注意,輸出都用引號包含,因為是 string 物件 而 pri...
Python Python基礎學習筆記
最近對python比較感興趣,就去學習了一下,發現跟c 包括c都有很多相似的地方,但是也有一些不一樣的地方,python語言真的是非常的簡潔,下面就將我這幾天學習的內容總結一下。隨時擴充 python的應用方向也非常的廣泛,包括資料分析方向的資料建模 資料探勘 資料視覺化 商業分析,資料採集方面的網...
Python Python的基礎語法
usr bin python 是用來說明指令碼語言是python的 是要用 usr bin下面的程式 工具 python,這個直譯器,來解釋python指令碼,來執行python指令碼的。是用來指定檔案編碼為utf 8的,上述定義允許在原始檔中使用 windows 8 字符集中的字元編碼,對應適合語...