摘要:
(一)get请求(原始写法) <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewpo 阅读全文
2022年1月9日
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 阅读全文
2022年1月7日
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 阅读全文
2022年1月4日
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' 阅读全文
2021年12月30日
摘要:
一、客户端程序 #1 创建socketimport socketif __name__ == '__main__': client_socket=socket.socket(socket.AF_INET,socket.SOCK_STREAM) #2 建立连接 client_socket.connec 阅读全文
2021年12月29日
2021年12月28日
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 阅读全文