
Pyhon学习
每天进步一點點
把时间花在感兴趣的事情上,保持终身学习。
展开
-
pandas取出某一列的数值是缺失值的行并打印
在处理表格的时候有一个需求,取出一列没有打钩的进行点对点通知,上代码select = df[df['备注'].isnull()]然后对姓名进行输出for i in data.keys(): print (data[i],end="、")print()为end传入参数“、”可以取代默认的换行,在同一行内输出结果(方便复制啊~)结果:pandas处理Excel是真的高效啊~...原创 2020-06-20 12:23:04 · 1820 阅读 · 0 评论 -
【debug】Python 3解决报错:‘NoneType‘ object has no attribute ‘decode‘
names, plot_dicts = [], []for repo_dict in repo_dics: names.append(repo_dict['name']) plot_dict = { 'value':repo_dict['stargazers_count'], 'label':repo_dict['description'] ...原创 2020-04-07 17:35:12 · 1671 阅读 · 0 评论 -
【debug】TypeError: the JSON object must be str, not ‘bytes‘
json_url = 'https://raw.githubusercontent.com/muxuezi/btc/master/btc_close_2017.json'response = urlopen(json_url)# 读取数据req = response.read()# 将数据写入文件with open('btc_close_2017_urlib.json', 'wb') a...原创 2020-04-06 16:18:52 · 853 阅读 · 0 评论 -
【debug】python3 中关于“ ‘xx‘ object has no attribute ‘xx‘ “ 问题
python3 中关于" ‘xx’ object has no attribute ‘xx’ " 问题python3 中关于" ‘xx’ object has no attribute ‘xx’ " 问题class Admin(User): """为User添加一个privileges的属性""" def __index__(self, first_name, last_na...原创 2020-04-02 11:06:43 · 14901 阅读 · 2 评论