L = list(filter(lambda x: x % 2, range(0, 20))) # 奇数 print(L) Lo = list(filter(lambda x: not x % 2 , range(0, 20))) # 偶数 print(Lo)
https://python3-cookbook.readthedocs.io/zh_CN/latest/index.html
https://www.liaoxuefeng.com/wiki/1016959663602400
https://github.com/lijin-THU/notes-python3
中文 Python 笔记
https://github.com/jackfrued/Python-100-Days
Python-100-Days
只记Python基础语法,却没什么用。需要日常的重复训练。
无方向的看书,看视频也没什么用,其实可以通过直接实战来上手,比如:
文件操作
字符排序
网络编程
编程就像骑自行车,买一本<<骑自行车大全>>是没有什么用的。
正确姿势:掌握最基础的姿势,就可以骑上车出发了,实际联系几天,摔几跤,基本就学会了。