2022年1月9日

摘要: (一)get请求(原始写法) <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewpo 阅读全文
posted @ 2022-01-09 22:08 Rz_dddd 阅读(18) 评论(0) 推荐(0) 编辑

2022年1月8日

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-01-08 23:34 Rz_dddd 阅读(576) 评论(0) 推荐(0) 编辑

2022年1月7日

摘要: 桌面左下角windows图标--搜索框内输入cmd,结果如图所示,点击cmd.exe,或者使用快捷键Windows键(在键盘上有个Windows标志的按键)+R输入cmd后回车。 启动mysql数据库:在出来的DOS命令窗口中输入 net start mysql,或者使用快捷键Windows键(在键 阅读全文
posted @ 2022-01-07 23:01 Rz_dddd 阅读(35) 评论(0) 推荐(0) 编辑

2022年1月6日

摘要: TypeError: a bytes-like object is required, not 'str' 如A是bytes 类型,运行 A.replace(‘s’,‘r')时,报这个错。 with open('template/index.html','rb') as file: fileData 阅读全文
posted @ 2022-01-06 22:39 Rz_dddd 阅读(364) 评论(0) 推荐(0) 编辑

2022年1月4日

摘要: 1、基础 ##装饰器本质上是一个闭包 def decotor(func): # print("请先登录") def inner(): ###在内部函数中对已有函数进行装饰 print("请先登录") func() return inner@decotor ###装饰器语法糖写法 等价于comment 阅读全文
posted @ 2022-01-04 22:21 Rz_dddd 阅读(31) 评论(0) 推荐(0) 编辑

2022年1月3日

摘要: MySQL问题记录--Can't connect to MySQL server on localhost (10061)解决方法 本文mysql的安装环境为win10 64位,mysql版本为MySQL5.7 问题描述:在命令行输入 mysql -u root -p 登录mysql,返回”Can' 阅读全文
posted @ 2022-01-03 10:14 Rz_dddd 阅读(411) 评论(0) 推荐(0) 编辑

2021年12月30日

摘要: 一、客户端程序 #1 创建socketimport socketif __name__ == '__main__': client_socket=socket.socket(socket.AF_INET,socket.SOCK_STREAM) #2 建立连接 client_socket.connec 阅读全文
posted @ 2021-12-30 20:30 Rz_dddd 阅读(42) 评论(0) 推荐(0) 编辑

2021年12月29日

摘要: import multiprocessing as muimport timeimport osdef dance(): print('当前的dance进程号',os.getpid()) print('当前的父进程号',os.getppid()) # print(os.getpid()) print 阅读全文
posted @ 2021-12-29 21:19 Rz_dddd 阅读(15) 评论(0) 推荐(0) 编辑

2021年12月28日

摘要: 一、导入模块三种写法 # import math# print(math.sqrt(9)) #调用的时候模块名.方法名# from math import sqrt# print(sqrt(9)) #调用时方法名from math import *print(sqrt(16)) #调用时方法名 if 阅读全文
posted @ 2021-12-28 22:20 Rz_dddd 阅读(55) 评论(0) 推荐(0) 编辑

2021年12月27日

摘要: file_path = 'E:\python\code\learning_python.txt'with open(file_path) as filename: fileStr=filename.read() print(fileStr) filename.seek(0) >让文件指针回到开始 f 阅读全文
posted @ 2021-12-27 18:23 Rz_dddd 阅读(101) 评论(0) 推荐(0) 编辑