上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
摘要: public class Factorial{ public static void main(String[] args){ for (int i = -5; i = 0){ return factorial(n); } else { return -factorial(-n); } ... 阅读全文
posted @ 2019-09-02 14:08 no樂on 阅读(2138) 评论(0) 推荐(0) 编辑
摘要: 思路: 准备配置文件setting.py,运行src/data.py,使用MySQL新建数据库并创建table,将字典数据导入到table中。编写server.py文件,建立服务端,循环接收web请求,使用多线程实现并发,解析请求(request),并返回响应(response)。未完善,只实现了基 阅读全文
posted @ 2019-08-30 13:50 no樂on 阅读(471) 评论(1) 推荐(0) 编辑
摘要: 回文(palindrome):指的是从头读到尾与从尾读到头一模一样的字符串。 分别在C、Java与Python实现回文检测: C: Java: Python: 阅读全文
posted @ 2019-08-25 14:31 no樂on 阅读(3823) 评论(0) 推荐(0) 编辑
摘要: day01:https://www.cnblogs.com/noonjuan/diary/2019/08/18/11371801.html day02:https://www.cnblogs.com/noonjuan/diary/2019/08/18/11373492.html day03:http 阅读全文
posted @ 2019-08-18 11:27 no樂on 阅读(142) 评论(0) 推荐(0) 编辑
摘要: Python实现电子词典(图形界面) 终端电子词典:https://www.cnblogs.com/noonjuan/p/11341375.html 文件一览: .├── client.py├── data.py├── dic.csv├── func.py├── pics│ ├── pic_logi 阅读全文
posted @ 2019-08-14 02:21 no樂on 阅读(899) 评论(0) 推荐(0) 编辑
摘要: 基础: list——https://www.cnblogs.com/noonjuan/diary/2019/08/24/11405239.html string——https://www.cnblogs.com/noonjuan/diary/2019/08/24/11405517.html dict 阅读全文
posted @ 2019-08-10 21:48 no樂on 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 实现终端FTP文件传输 代码结构: .├── client.py├── readme.txt└── server.py 运行截图: readme.txt server.py client.py 阅读全文
posted @ 2019-08-07 13:28 no樂on 阅读(999) 评论(1) 推荐(0) 编辑
摘要: 网络图形化界面多人聊天室 - Linux Windows版本:https://www.cnblogs.com/noonjuan/p/12078524.html 在Python实现网络多人聊天室基础上,添加图形化界面,实现网络图形化界面多人聊天室。 代码结构: chatroom├── client.p 阅读全文
posted @ 2019-08-05 19:42 no樂on 阅读(5744) 评论(0) 推荐(0) 编辑
摘要: Thread笔记 Thread——fork:https://www.cnblogs.com/noonjuan/diary/2019/08/03/11296217.html Thread——multiprocessing:https://www.cnblogs.com/noonjuan/diary/2 阅读全文
posted @ 2019-08-03 20:41 no樂on 阅读(193) 评论(0) 推荐(0) 编辑
摘要: Python实现网络多人聊天室 - Linux 相关连接: Python实现网络多人聊天室 - Windows Python实现网络图形化界面多人聊天室 文件结构: chatroom ├── client.py # 客户端代码 ├── language.py # 语言文件 ├── server.py 阅读全文
posted @ 2019-08-03 17:02 no樂on 阅读(17512) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页