python变量类型的帮助和类型制转换

        要查看python的变量属于哪个数据类型的时候,可以使用type(variable)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
In [1]: type(1)
Out[1]: int
In [2]: type('a')
Out[2]: str
In [3]: b = 10
In [4]: type(b)
Out[4]: int
In [5]: c = 'ab'
In [6]: type(c)
Out[6]: str
In [7]: d = ('a', 'b')
In [8]: type(d)
Out[8]: tuple
In [9]: e = [1, 2, 'a']
In [10]: type(e)
Out[10]: list
In [11]: f = {'a':10, 'b':20}
In [12]: type(f)
Out[12]: dict

        要查看一个变量具体有哪些方法,可以使用dir(variable)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
In [13]: dir(c)
Out[13]:
['__add__',
'__class__',
'__contains__',
'__delattr__',
'__doc__',
'__eq__',
'__format__',
'__ge__',
'__getattribute__',
'__getitem__',
'__getnewargs__',
'__getslice__',
'__gt__',
'__hash__',
'__init__',
'__le__',
'__len__',
'__lt__',
'__mod__',
'__mul__',
'__ne__',
'__new__',
'__reduce__',
'__reduce_ex__',
'__repr__',
'__rmod__',
'__rmul__',
'__setattr__',
'__sizeof__',
'__str__',
'__subclasshook__',
'_formatter_field_name_split',
'_formatter_parser',
'capitalize',
'center',
'count',
'decode',
'encode',
'endswith',
'expandtabs',
'find',
'format',
'index',
'isalnum',
'isalpha',
'isdigit',
'islower',
'isspace',
'istitle',
'isupper',
'join',
'ljust',
'lower',
'lstrip',
'partition',
'replace',
'rfind',
'rindex',
'rjust',
'rpartition',
'rsplit',
'rstrip',
'split',
'splitlines',
'startswith',
'strip',
'swapcase',
'title',
'translate',
'upper',
'zfill']

        这样就可以显示出该变量所有的方法了,还可以查看帮助信息help()

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
In [17]: help(c.
c.capitalize c.format c.isupper c.rindex c.strip
c.center c.index c.join c.rjust c.swapcase
c.count c.isalnum c.ljust c.rpartition c.title
c.decode c.isalpha c.lower c.rsplit c.translate
c.encode c.isdigit c.lstrip c.rstrip c.upper
c.endswith c.islower c.partition c.split c.zfill
c.expandtabs c.isspace c.replace c.splitlines
c.find c.istitle c.rfind c.startswith
In [17]: help(c.join)
Help on built-in function join:
join(...)
S.join(iterable) -> string
Return a string which is the concatenation of the strings in the
iterable. The separator between elements is S.

        如果使用pycharm,直接Ctrl+鼠标左键。

        有时候,需要对数据内置的类型进行转换,数据类型的转换,只需要将数据类型作为函数名即可。

        以下几个内置的函数可以执行数据类型之间的转换。这些函数返回一个新的对象,表示转换的值。

函数 描述
int(x [,base]) 将x转换为一个整数
long(x [,base] ) 将x转换为一个长整数
float(x) 将x转换到一个浮点数
complex(real [,imag]) 创建一个复数
str(x) 将对象 x 转换为字符串
repr(x) 将对象 x 转换为表达式字符串
eval(str) 用来计算在字符串中的有效Python表达式,并返回一个对象
tuple(s) 将序列 s 转换为一个元组
list(s) 将序列 s 转换为一个列表
set(s) 转换为可变集合
dict(d) 创建一个字典。d 必须是一个序列 (key,value)元组。
frozenset(s) 转换为不可变集合
chr(x) 将一个整数转换为一个字符
unichr(x) 将一个整数转换为Unicode字符
ord(x) 将一个字符转换为它的整数值
hex(x) 将一个整数转换为一个十六进制字符串
oct(x) 将一个整数转换为一个八进制字符串