2024年4月8日
摘要: import matplotlib.pyplot as plt import matplotlib matplotlib.use('TkAgg') # 设定函数进行计算 def SV(EV, PV): return EV - PV def CV(EV, AC): return EV - AC def 阅读全文
posted @ 2024-04-08 20:57 XiSoil 阅读(26) 评论(0) 推荐(0) 编辑
摘要: import pymysql as sql conn = sql.connect( host='localhost', user='root', password='20240108', database='usr' ) table = 'tc2' cur = conn.cursor() try: 阅读全文
posted @ 2024-04-08 18:39 XiSoil 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 通过修改配置文件 Windows 上的配置方式: 打开 pip.ini 文件,通常位于 C:\Users\YourUsername\pip\pip.ini,如果文件不存在可以创建它。 在 pip.ini 文件中添加以下内容: [global] index-url = https://pypi.tun 阅读全文
posted @ 2024-04-08 17:17 XiSoil 阅读(41) 评论(0) 推荐(0) 编辑