Python基础学习教程,介绍序列相关的函数:len(x)、max(x)、min(x)、sum(x)、any(x)、all(x);列表的方法:L.append(x)、L.insert(index, value)、L.clear()、L.count(v)、L.copy()、L.remove(v)、L.pop(index)、L.sort(reverse=False)、L.extend();字符串方法:S.split(sep=None)、S.join(序列);还介绍了列表推导式[表达式for变量in可迭代对象if真值表达式],深拷贝和浅拷贝等常用知识点。