Python基础01.基本数据类型
# coding=utf-8
# 标准数据类型 Numbers(数字)、String(字符串)、List(列表)、Tuple(元组)、Dictionary(字典)
age = 18
name = "tom"
# 列表
speaking = ["chs", "eng"]
# 元组 无法新增、删除
someone = ("tall", "rich", "hot")
# 字典
clothes =...
原创
2019-09-16 13:40:02 ·
140 阅读 ·
0 评论