python
文章平均质量分 55
来不起了
这个作者很懒,什么都没留下…
展开
-
Python网络编程报错:TypeError: a bytes-like object is required, not 'str'
客户端报错:TypeError: must be str, not bytes服务端报错:TypeError: a bytes-like object is required, not 'str'报错源码:''' Created on 2018年7月14日 @author: dtjy ''' import socket HOST='127.0.0.1' PORT=8080 s=socket....原创 2018-07-14 10:54:41 · 1369 阅读 · 0 评论 -
网络编程-UDP
UDP,传输层协议,一种无连接协议。不安全原创 2018-07-14 10:58:14 · 130 阅读 · 0 评论 -
Python连接MySQL数据库进行增删查改
1.连接数据库我是用的python版本是3.6.6,就得先安装PyMySQL模块;如果是Python2中则使用mysqldb模块,也需先安装。安装PyMySQL:C:\Users\asus>pip3 install PyMySQLCollecting PyMySQLDownloading https://files.pythonhosted.org/packages/a7/7d/682c4a...原创 2018-07-14 14:27:26 · 952 阅读 · 0 评论 -
python——peewee简单使用
peewee是一个轻量级的ORM框架,适用于小型项目 要使用首先的现在安装peewee模块: C:\Users\asus>pip3 install peewee Collecting peewee Downloadinghttps://files.pythonhosted.org/packages/33/07/d4c742d88998fb448e18be41dc25e748376b7f6...原创 2018-07-14 16:11:12 · 6931 阅读 · 3 评论