1.1 python中定义变量与数据类型

一、定义变量
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))

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值