- # 定义变量goodGoodStudy = ‘hello’
- good_good_study = ‘hello’ # 在 python 中, 推荐这种命名方式。
# 整形 int
age = 100
# 浮点型 (小数)
weight = 110.8
# 布尔型 bool
is_man = True # False
# 字符串类型 str
name = “张三丰” # ‘张三风’
# 元组类型 tuple
lucky_num = (2, 6, 9)
# 列表类型 list
list_data = [1]
# 集合类型 set
set_data = {‘hello’, ‘world’, ‘python’}
# 字典类型 dict
dict_data = {‘address’: ‘北京市朝阳区’}
“”” 下面 查看 各种数据类型 “””
# type(age) # 或者 type(100)
print(type(age))
print(type(18))
print(type(weight))
print(type(True))
print(type(name)) # 等价于 print(type(“张三丰”))
print(type(lucky_num))
print(type([1, 2, 3, 4, 5])) # 等价于 print(type(list_data))
print(type(set_data))
print(type(dict_data))
print(type(list_data))
© 版权声明
THE END
暂无评论内容