Python--1. 运算符、表达式2.1 Python常用内置对象2.2 Python运算符与表达式2.3 Python关键字简要说明(详见p24)
2.1 Python常用内置对象数字 – int,float,complex字符串 – str字节串 – bytes – e.g. b’hello world’列表 – list – #其中元素可以是任意类型字典 – dict – #元素形式:“键:值”元组 – tuple – #如果元组中只有一个元素,后面的逗号不能省略 --e.g. (3,)集合 – set,frozense...