数据类型
字符串:str
数值:int / float
布尔:True / False
列表:list
元组:tuple
集合:set
字典:dict
# 字符串
str1 = "字符串类型"
print(type(str1))
# 数字 int
num1 = 11
print(type(num1))
# 数字 float
num2 = 11.5
print(type(num2))
# 布尔 bool
isTrue = True
isFalse = False
print(type(isTrue))
print(type(isFalse))
# 列表 list
list_type = [1, 2, 3, 4]
print(type(list_type))
# 元组 tuple
tuple_type = (1, 2, 3, 4, 5)
print(type(tuple_type))
# 集合 set
set_type = {1, 2, 3, 4, 5}
print(type(set_type))
# 字典 dict
dict_type = {"name": "Tom", "age": 12}
print(type(dict_type))
以上程序运行结果
标识符
简单的说就是一串字符串(但字符串未必是标识符)
规则:
- 只能由子母/数字/下划线组成
- 开头不能是数字
- 不能是关键字
- 区分大小写
- 见名知意
- 遵循驼峰原则(从第二个单词开始首字母大写 例如:makeFile)
# 查看关键字的代码
import keyword
print(keyword.kwlist)
关键字列表:
作用;:给函数/变量命名的
注意: 在python3中,非ascii码也可以做标识符