一、定义变量
1.定义变量
语法:变量名=值
2.使用变量
3.看变量的特点
# 定义变量:存储数据TOM
my_name = 'TOM'
print(my_name)
# 定义变量:存储数据 Serendipity
schoolName = 'Serendipity'
print(schoolName)
二、数据类型
数值:int(整型),float(浮点型)
布尔型:true(真),false(假)
str(字符串),list(列表),tuple(元组),set(集合),dict(字典)
1.按经验将不同的变量存储不同的类型的数据
2.验证这些数据到底是什么类型--检测数据类型--type(数据)
# int--整型
num1 = 1
# float--浮点型(小数)
num2 = 1.1
print(type(num1))
print(type(num2))
# str--字符串,特点:数据都要带引号
a = 'Hello world'
print(type(a))
# bool--布尔型,通常判断使用,布尔型有两个数值True和False
b = True
print(type(b))
# list--列表
c = [10, 20, 30]
print(type(c))
# tuple--元组
d = (10, 20, 30)
print(type(d))
# set--集合
e = {10, 20, 30}
print(type(e))
# dict--字典--键值对
f = {'name': 'TOM', 'age': '18'}
print(type(f))