python之 資料型別判定與型別轉換

張衝andy發表於2017-12-10


一、 判斷資料型別

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)

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31383567/viewspace-2148508/,如需轉載,請註明出處,否則將追究法律責任。

相關文章