# 布尔值 bool boolean :True False 首字母大写 # 字符串str: 单引号、双引号、三引号的内容都是字符串 # type(数据) 判断数据类型 a = "hello" print(type(a))