本文共 174 字,大约阅读时间需要 1 分钟。
数据类型
a=10 # int 整型
a=1.3 # float 浮点型
a=True # 真值 (True/False) 布尔类型
a='Hello!' # 字符串。字符串也可以用双引号。