您好,登錄后才能下訂單哦!
本篇文章為大家展示了python中怎么實現數據類型判定,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
一、 判斷數據類型
0、type(x)
type()可以接收任何東西作為參數――并返回它的數據類型。整型、字符串、列表、字典、元組、函數、類、模塊,甚至類型對象都可以作為參數被 type 函數接受。
>>> type(1)
<type 'int'>
>>> li = []
>>> type(li)
<type 'list'>
>>> import odbchelper
>>> type(odbchelper)
<type 'module'>
>>> import types
>>> type(odbchelper) == types.ModuleType
True
二、 數據類型轉換
1、chr(i)
chr()函數返回ASCII碼對應的字符串。
>>> print chr(65)
A
>>> print chr(66)
>>> print chr(65)+chr(66)
AB
2、complex(real[,imaginary])
complex()函數可把字符串或數字轉換為復數。
>>> complex("2+1j")
(2+1j)
>>> complex("2")
(2+0j)
>>> complex(2,1)
(2+1j)
>>> complex(2L,1)
(2+1j)
3、float(x)
float()函數把一個數字或字符串轉換成浮點數。
>>> float("12")
12.0
>>> float(12L)
12.0
>>> float(12.2)
12.199999999999999
4、hex(x)
hex()函數可把整數轉換成十六進制數。
>>> hex(16)
'0x10'
>>> hex(123)
'0x7b'
5、long(x[,base])
long()函數把數字和字符串轉換成長整數,base為可選的基數。
>>> long("123")
123L
>>> long(11)
11L
6、list(x)
list()函數可將序列對象轉換成列表。如:
>>> list("hello world")
['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd']
>>> list((1,2,3,4))
[1, 2, 3, 4]
7、int(x[,base])
int()函數把數字和字符串轉換成一個整數,base為可選的基數。
>>> int(3.3)
3
>>> int(3L)
3
>>> int("13")
13
>>> int("14",15)
19
8、min(x[,y,z...])
min()函數返回給定參數的最小值,參數可以為序列。
>>> min(1,2,3,4)
1
>>> min((1,2,3),(2,3,4))
(1, 2, 3)
9、max(x[,y,z...])
max()函數返回給定參數的最大值,參數可以為序列。
>>> max(1,2,3,4)
4
>>> max((1,2,3),(2,3,4))
(2, 3, 4)
10、oct(x)
oct()函數可把給出的整數轉換成八進制數。
>>> oct(8)
'010'
>>> oct(123)
'0173'
11、ord(x)
ord()函數返回一個字符串參數的ASCII碼或Unicode值。
>>> ord("a")
97
>>> ord(u"a")
97
12、str(obj)
str()函數把對象轉換成可打印字符串。
>>> str("4")
'4'
>>> str(4)
'4'
>>> str(3+2j)
'(3+2j)'
13、tuple(x)
tuple()函數把序列對象轉換成tuple。
>>> tuple("hello world")
('h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd')
>>> tuple([1,2,3,4])
(1, 2, 3, 4)
上述內容就是python中怎么實現數據類型判定,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。