大體上把Python中的數據類型分為如下幾類:
Number(數字) 包括int,long,float,complex
String(字符串) 例如:hello,"hello",hello
List(列表) 例如:[1,2,3],[1,2,3,[1,2,3],4]
Dictionary(字典) 例如:{1:"nihao",2:"hello"}
Tuple(元組) 例如:(1,2,3,abc)
Bool(布爾) 包括True、False
由於Python中認為所有的東西都是對象,所以Python不用像其它一些高級語言那樣主動聲明一個變量的類型。
例如我要給一個變量i賦值100,python的實現 :
i=100
C#的實現:
int i = 100;
下面一一簡單介紹這幾種數據類型
數字類型
int和long
之所以要把int和long放在一起的原因是python3.x之後已經不區分int和long,統一用int。python2.x還是區分的。下面我以Python2.7為例:
>>> i = 10
>>> type(i)
>>> i=10000000000
>>> type(i)
那麼為什麼10就是int,10000000000就是long呢,當然這就和int的最大值有關了,int類型的最大值為231-1,即2147483647,也可以用sys.maxint。
>>> 2**31-1
2147483647L
>>> sys.maxint
2147483647
為什麼用上面的方法求的值就是long型的呢(數字後面加‘L’表示是long型),因為2**31的值為2147483648,這個值是一個long型,用一個long型減去1,結果還是一個long,但實際上int型的最大值就是2147483647
>>> type(2147483647)
>>> type(2147483648)
float類型
float類型和其它語言的float基本一致,浮點數,說白了,就是帶小數點的數,精度與機器相關。例如:
>>> i = 10000.1212
>>> type(i)
complex:復數類型,具體含義及用法可自行查看相關文檔。
字符串類型
字符串的聲明有三種方式:單引號、雙引號和三引號(包括三個單引號或三個雙引號)。例如:
>>> str1 = 'hello world'
>>> str2 = "hello world"
>>> str3 = '''hello world'''
>>> str4 = """hello world"""
>>> print str1
hello world
>>> print str2
hello world
>>> print str3
hello world
>>> print str4
hello world
Python中的字符串有兩種數據類型:str類型和unicode類型。str類型采用的ASCII編碼,也就是說它無法表示中文。unicode類型采用unicode編碼,能夠表示任意字符,包括中文及其它語言。並且python中不存在像c語言中的char類型,就算是單個字符也是字符串類型。字符串默認采用的ASCII編碼,如果要顯示聲明為unicode類型的話,需要在字符串前面加上'u'或者'U'。例如:
>>> str1 = "hello"
>>> print str1
hello
>>> str2 = u"中國"
>>> print str2
中國
由於項目中經常出現對字符串的操作,而且由於字符串編碼問題出現的問題很多,下面,來說一下關於字符串的編碼問題。在與python打交道的過程中經常會碰到ASCII、Unicode和UTF-8三種編碼。具體的介紹請參見這篇文章。我簡單的理解就是,ASCII編碼適用英文字符,Unicode適用於非英文字符(例如中文、韓文等),而utf-8則是一種儲存和傳送的格式,是對Uncode字符的再編碼(以8位為單位編碼)。例如:
u = u'漢'
print repr(u) # u'u6c49'
s = u.encode('UTF-8')
print repr(s) # 'xe6xb1x89'
u2 = s.decode('UTF-8')
print repr(u2) # u'u6c49'
解釋:聲明unicode字符串”漢“,它的unicode編碼為”u6c49“,經過utf-8編碼轉換後,它的編碼變成”xe6xb1x89“。
對於編碼的經驗總結:
1.在python文件頭聲明編碼格式 ;
#-*- coding: utf-8 -*-
2.將字符串統一聲明為unicode類型,即在字符串前加u或者U;
3.對於文件讀寫的操作,建議適用codecs.open()代替內置的open(),遵循一個原則,用哪種格式寫,就用哪種格式讀;
假設在一個以ANSI格式保存的文本文件中有“中國漢字”幾個字,如果直接用以下代碼,並且要在GUI上或者在一個IDE中打印出來(例如在sublime text中,或者在pydev中打印),就會出現亂碼或者異常,因為codecs會依據文本本身的編碼格式讀取內容:
f = codecs.open("d:/test.txt")
content = f.read()
f.close()
print content
改用如下方法即可(只對中文起作用):
# -*- coding: utf-8 -*-
import codecs
f = codecs.open("d:/test.txt")
content = f.read()
f.close()
if isinstance(content,unicode):
print content.encode('utf-8')
print "utf-8"
else:
print content.decode('gbk').encode('utf-8')
列表類型
列表是一種可修改的集合類型,其元素可以是數字、string等基本類型,也可以是列表、元組、字典等集合對象,甚至可以是自定義的類型。其定義方式如下:
>>> nums = [1,2,3,4]
>>> type(nums)
>>> print nums
[1, 2, 3, 4]
>>> strs = ["hello","world"]
>>> print strs
['hello', 'world']
>>> lst = [1,"hello",False,nums,strs]
>>> type(lst)
>>> print lst
[1, 'hello', False, [1, 2, 3, 4], ['hello', 'world']]
用索引的方式訪問列表元素,索引從0開始,支持負數索引,-1為最後一個.
>>> lst = [1,2,3,4,5]
>>> print lst[0]
1
>>> print lst[-1]
5
>>> print lst[-2]
4
支持分片操作,可訪問一個區間內的元素,支持不同的步長,可利用分片進行數據插入與復制操作
nums = [1,2,3,4,5]
print nums[0:3] #[1, 2, 3] #前三個元素
print nums[3:] #[4, 5] #後兩個元素
print nums[-3:] #[3, 4, 5] #後三個元素 不支持nums[-3:0]
numsclone = nums[:]
print numsclone #[1, 2, 3, 4, 5] 復制操作
print nums[0:4:2] #[1, 3] 步長為2
nums[3:3] = ["three","four"] #[1, 2, 3, 'three', 'four', 4, 5] 在3和4之間插入
nums[3:5] = [] #[1, 2, 3, 4, 5] 將第4和第5個元素替換為[] 即刪除["three","four"]
支持加法和乘法操作
lst1 = ["hello","world"]
lst2 = ['good','time']
print lst1+lst2 #['hello', 'world', 'good', 'time']
print lst1*5 #['hello', 'world', 'hello', 'world', 'hello', 'world', 'hello', 'world', 'hello', 'world']
列表所支持的方法,可以用如下方式查看列表支持的公共方法:
>>> [x for x in dir([]) if not x.startswith("__")]
['append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort']
def compare(x,y):
return 1 if x>y else -1
#【append】 在列表末尾插入元素
lst = [1,2,3,4,5]
lst.append(6)
print lst #[1, 2, 3, 4, 5, 6]
lst.append("hello")
print lst #[1, 2, 3, 4, 5, 6]
#【pop】 刪除一個元素,並返回此元素的值 支持索引 默認為最後一個
x = lst.pop()
print x,lst #hello [1, 2, 3, 4, 5, 6] #默認刪除最後一個元素
x = lst.pop(0)
print x,lst #1 [2, 3, 4, 5, 6] 刪除第一個元素
#【count】 返回一個元素出現的次數
print lst.count(2) #1
#【extend】 擴展列表 此方法與“+”操作的不同在於此方法改變原有列表,而“+”操作會產生一個新列表
lstextend = ["hello","world"]
lst.extend(lstextend)
print lst #[2, 3, 4, 5, 6, 'hello', 'world'] 在lst的基礎上