day-7基本数据类型

#!/user/bin/env/python
#-*- coding:utf-8 -*-
'''
基本数据类型
1.数字(int)
一.在Python3中(int)
a1 = 123
a2 = 456
二.在Python2中(long)长整形
2.字符串
s2 = root
s1 = 'alex'
3.列表 list
...
4.元组 tuple
...
5.字典 dict
...
6.布尔值 bool
...
'''

猜你喜欢

转载自www.cnblogs.com/pythonzhao/p/11701229.html