上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页
摘要: Python——IO多路复用之select模块epoll方法 使用epoll方法实现IO多路复用,使用方法基本与poll方法一致,epoll效率要高于select和poll。 .├── epoll_client.py├── epoll_server.py└── settings.py 阅读全文
posted @ 2019-08-01 12:43 no樂on 阅读(387) 评论(0) 推荐(0) 编辑
摘要: Python——IO多路复用之select模块poll方法 使用poll方法实现IO多路复用 .├── poll_client.py├── poll_server.py└── settings.py 阅读全文
posted @ 2019-08-01 12:35 no樂on 阅读(492) 评论(0) 推荐(0) 编辑
摘要: Python——IO多路复用之select模块select方法 使用select模块的select方法实现Python——IO多路复用 实现同时将终端输入的文本以及客户端传输的文本写入文本文件中: write_file/├── client.py├── server.py├── settings.p 阅读全文
posted @ 2019-08-01 11:48 no樂on 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2019-07-29 19:27 no樂on 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2019-07-24 23:22 no樂on 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 学生信息管理 student_management/├── func.py├── info.db.bak├── info.db.dat├── info.db.dir├── __init__.py├── main.py├── __pycache__│ ├── func.cpython-37.pyc│ 阅读全文
posted @ 2019-07-16 15:49 no樂on 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 抓取播客翻译 结果: 注意事项: 1、以上是在ubuntu系统实现的,如果使用windows的话需要进行一些修改,如将"/"转换为"\",而因为python中转义字符由"\"符号开头,所以在写路径时要写双斜杠"\\"。 2、以上代码可以在ubuntu系统中运行,但是我在windows中运行时出现了" 阅读全文
posted @ 2019-07-16 02:00 no樂on 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 集合 阅读全文
posted @ 2019-07-11 10:20 no樂on 阅读(173) 评论(0) 推荐(0) 编辑
摘要: sorted() sorted(iterable, /, *, key=None, reverse=False) Return a new list containing all items from the iterable in ascending order. A custom key fun 阅读全文
posted @ 2019-07-10 19:57 no樂on 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 星星树 阅读全文
posted @ 2019-07-04 16:24 no樂on 阅读(195) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页