Python重修之Day1-变量类型

重修第一天:数据类型。

变量类型

Python的变量类型有:Int(Numbers)、Str(String)、Dict(Dictionary)、List、Tuple、布尔(True&False)、空(None&‘’)等。

1、数字类型又分为:Int、Float、Complex等三种类型,但只有前两种属于常用类型。

1 >>> a=10    #整数
2 >>> b=10.11    #小数
3 >>> c=10.1j    #复数
4 >>> a
5 10
6 >>> b
7 10.11
8 >>> c
9 10.1j
View Code

2、字符串

>>> s='life is shot'
>>> s1="life is shot"
>>> s2='''life is shot,you need python'''
>>> s3="""life is shot,you need python"""

3、字典

>>> d={'a':1,"b":2}

4、列表

>>> l=[1,2,3,4,5]

5、元组

>>> t=(1,2,3,4)

6、布尔

>>> a=True
>>> b=False

7、空

>>> a=None
>>> b=''

 

变量赋值

1、单变量

>>> a=1
>>> b=2
>>> c=3

2、多变量

>>> a=b=c=1
>>> a,b,c=1,2,3

类型转换

int(变量),将变量的值转为整型

float(变量),将变量的值转为实数

str(变量),将变量的值转为字符串

tuple(变量),将变量的值转为元组

list(变量),将变量的值转为列表

dict(变量),创建字典

eval(变量),将字符串转为字典

repr(变量),将字典转为字符串

参考链接:https://www.php.cn/python/python-variable-types.html

基本语法链接:https://www.php.cn/python/python-basic-syntax.html

你可能感兴趣的:(Python重修之Day1-变量类型)