20170322列表、元组、字典、集合、循环
List列表
Classmates=[‘tianxu01’,’tianxu02’,’tianxu03’]
Len(classmates)
索引classmates[1]
Classmates.insert(1,’tianxuS’)
默认在末尾加入一个元素
Classmates.append(tianxu04)
删除第1位的元素
classmates.pop(1)
元组
Classmates=(“a”,”b”)
元组一经定义,是不可变的,不能够使用insert,append或者pop等
Python的循环有两种,一种是for...in循环
第二种循环是while循环,只要条件满足,就不断循环,条件不满足时退出循环
在循环过程中,也可以通过continue语句,跳过当前的这次循环,直接开始下一次循环。
Dict和set
Dict,字典,包含键值对。
Set集合,et和dict类似,也是一组key的集合,但不存储value。由于key不能重复,所以,在set中,没有重复的key。
s.add()s.remove
函数:
绝对值abs()
最大值max()
化为整数int()
浮点型float()
字符串str()
转换为十六进制hex()
定义一个函数: