1、chr(i)
chr()函數(shù)返回ASCII碼對(duì)應(yīng)的字符串。
>>> print chr(65)
A
>>> print chr(66)
>>> print chr(65)+chr(66)
AB
2、complex(real[,imaginary])
complex()函數(shù)可把字符串或數(shù)字轉(zhuǎn)換為復(fù)數(shù)。
>>> complex("2+1j")
(2+1j)
>>> complex("2")
(2+0j)
>>> complex(2,1)
(2+1j)
>>> complex(2L,1)
(2+1j)
3、float(x)
float()函數(shù)把一個(gè)數(shù)字或字符串轉(zhuǎn)換成浮點(diǎn)數(shù)。
>>> float("12")
12.0
>>> float(12L)
12.0
>>> float(12.2)
12.199999999999999
4、hex(x)
hex()函數(shù)可把整數(shù)轉(zhuǎn)換成十六進(jìn)制數(shù)。
>>> hex(16)
'0x10'
>>> hex(123)
'0x7b'
5、long(x[,base])
long()函數(shù)把數(shù)字和字符串轉(zhuǎn)換成長整數(shù),base為可選的基數(shù)。
>>> long("123")
123L
>>> long(11)
11L
6、list(x)
list()函數(shù)可將序列對(duì)象轉(zhuǎn)換成列表。如:
>>> 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()函數(shù)把數(shù)字和字符串轉(zhuǎn)換成一個(gè)整數(shù),base為可選的基數(shù)。
>>> int(3.3)
3
>>> int(3L)
3
>>> int("13")
13
>>> int("14",15)
19
8、min(x[,y,z...])
min()函數(shù)返回給定參數(shù)的最小值,參數(shù)可以為序列。
>>> min(1,2,3,4)
1
>>> min((1,2,3),(2,3,4))
(1, 2, 3)
9、max(x[,y,z...])
max()函數(shù)返回給定參數(shù)的最大值,參數(shù)可以為序列。
>>> max(1,2,3,4)
4
>>> max((1,2,3),(2,3,4))
(2, 3, 4)
10、oct(x)
oct()函數(shù)可把給出的整數(shù)轉(zhuǎn)換成八進(jìn)制數(shù)。
>>> oct(8)
'010'
>>> oct(123)
'0173'
11、ord(x)
ord()函數(shù)返回一個(gè)字符串參數(shù)的ASCII碼或Unicode值。
>>> ord("a")
97
>>> ord(u"a")
97
12、str(obj)
str()函數(shù)把對(duì)象轉(zhuǎn)換成可打印字符串。
>>> str("4")
'4'
>>> str(4)
'4'
>>> str(3+2j)
'(3+2j)'
13、tuple(x)
tuple()函數(shù)把序列對(duì)象轉(zhuǎn)換成tuple。
>>> tuple("hello world")
('h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd')
>>> tuple([1,2,3,4])
(1, 2, 3, 4)
14、type(x)
type()可以接收任何東西作為參數(shù)
主站蜘蛛池模板:
泗阳县|
青冈县|
富阳市|
渝北区|
望谟县|
辉县市|
封丘县|
瓦房店市|
宁波市|
滦南县|
凌云县|
枣强县|
潼关县|
连山|
罗江县|
泽库县|
安图县|
卓资县|
广东省|
郧西县|
万宁市|
昭觉县|
衡阳县|
桐乡市|
葵青区|
监利县|
科尔|
韩城市|
基隆市|
平远县|
通榆县|
重庆市|
深圳市|
张家港市|
都昌县|
那曲县|
汾西县|
库尔勒市|
句容市|
崇左市|
滦南县|