
python小白
文章平均质量分 62
CXsyf
这个作者很懒,什么都没留下…
展开
-
【pytest】记录解决问题AttributeError: ‘TestBaidu‘ object has no attribute ‘driver‘
使用pytest中解决问题 :'TestBaidu' object has no attribute 'driver'原创 2023-03-15 14:57:25 · 1180 阅读 · 0 评论 -
python 由json绘制均值图
import jsonimport pygalimport mathfrom pygal.style import Stylefrom itertools import groupby#打开文件filename = ‘btc_close.json’with open(filename) as f:btc_data = json.load(f)#定义空列表dates = []months = []weeks = []weekdays = []close = []#将数据写入列表中原创 2021-02-26 18:03:22 · 391 阅读 · 0 评论 -
python绘制图
import csv#导入日期包from datetime import datetime#导入绘图包from matplotlib import pyplot as plt#Get dates, high, and low temperatures from file.filename = ‘death_valley.csv’#打开数据文件with open(filename) as f:reader = csv.reader(f)#读取下一行header_row = next(re原创 2021-02-25 16:18:04 · 280 阅读 · 0 评论