07 2019 档案
摘要:NET日记 NET——day01:https://www.cnblogs.com/noonjuan/diary/2019/07/29/11265942.html NET——day02:https://www.cnblogs.com/noonjuan/diary/2019/07/30/11270993
阅读全文
摘要:MySQL日记 MySQL——day01:https://www.cnblogs.com/noonjuan/diary/2019/07/24/11241543.html MySQL——day02:https://www.cnblogs.com/noonjuan/diary/2019/07/25/11
阅读全文
摘要:学生信息管理 student_management/├── func.py├── info.db.bak├── info.db.dat├── info.db.dir├── __init__.py├── main.py├── __pycache__│ ├── func.cpython-37.pyc│
阅读全文
摘要:抓取播客翻译 结果: 注意事项: 1、以上是在ubuntu系统实现的,如果使用windows的话需要进行一些修改,如将"/"转换为"\",而因为python中转义字符由"\"符号开头,所以在写路径时要写双斜杠"\\"。 2、以上代码可以在ubuntu系统中运行,但是我在windows中运行时出现了"
阅读全文
摘要:sorted() sorted(iterable, /, *, key=None, reverse=False) Return a new list containing all items from the iterable in ascending order. A custom key fun
阅读全文
摘要:列表解析 列表解析总共有两种形式: 1. [i for i in range(k) if condition]:此时if起条件判断作用,满足条件的,将被返回成为最终生成的列表的一员。 2. [i if condition else exp for exp]:此时if...else被用来赋值,满足条件
阅读全文