摘要:
使用pymysql模块,主要用于Python3.x 连接 Mysql 数据库 请使用pip3 install pymysql安装模块 一、数据库连接对象 pymysql.connect(host='', user='', password='', database='', port=0, db='' 阅读全文
摘要:
一、pathlib模块 该模块提供提供表示文件系统路径的类 该模块包括的类如图: pathlib.PurePath(pathfile) 返回表示纯路径的类 只对pathfile执行操作,不实际访问pathfile表示的文件,也不管pathfile表示的文件是否存在 如果未提供pathfile,默认当 阅读全文