摘要: pip install numpy pip install matplotlib pip install pandas -i http://pypi.douban.com/simple --trusted-host pypi.douban.com pip install xlrd pip insta 阅读全文
posted @ 2023-03-12 16:27 向而往之 阅读(26) 评论(0) 推荐(0)
摘要: Python 调用 js 文件,报 execjs._exceptions.ProgramError: SyntaxError: 缺少 ')' 错误: https://www.codenong.com/js63e16b23aa7e/ 阅读全文
posted @ 2023-02-16 21:26 向而往之 阅读(13) 评论(0) 推荐(0)
摘要: pip install lxml pip install requests pip install BeautifulSoup4 pip install pymysql (需要安装MySQL) pip install pymongo (需要安装MongoDB) pip install seleniu 阅读全文
posted @ 2023-01-25 20:12 向而往之 阅读(9) 评论(0) 推荐(0)
摘要: 数据类型: 数值类型: int:4字节 (integr) float:4字节 double:8字节 字符串类型: char:固定长度字符串 varchar:可变长度字符串 时间/日期类型: Date:YYYY-DD-MM Datetime:YYYY-DD-MM HH:MM:SS Time:HH:MM 阅读全文
posted @ 2023-01-25 20:12 向而往之 阅读(11) 评论(0) 推荐(0)
摘要: 表格: 用<table></table>创建一个表格,在属性中用‘border’设置表格的边框 用<tr></tr>创建行 用<td></td>在行中创建列 列表: 用<ul></ul>创建无序列表,并用<li></li>在列表中创建列表项 用<ol></ol>创建无序列表,并用<li></li>在 阅读全文
posted @ 2023-01-15 19:20 向而往之 阅读(4) 评论(0) 推荐(0)