python
天下无我这般幸运人
这个作者很懒,什么都没留下…
展开
-
Matplotlib:Adding an axes using the same arguments as a previous axes
学习《机器学习实战》kNN时,在使用Matplotlib画图时,发现了一个Warining MatplotlibDeprecationWarning: Adding an axes using the same arguments as a previous axes currently reuses the earlier instance. In a future version, a ...原创 2018-12-03 16:29:31 · 19759 阅读 · 4 评论 -
python 小技巧\错误 记录
reverse函数能使调用它的列表变为逆序,但是调用这个函数是没有返回值的 list_2=list_1.reverse() 不能得到list_1的逆序列表,此时的list_2是None list_1.reverse()能使list自身的元素变为逆序 python可以通过函数改变列表,字典等的值,不能改变字符串或者数字的值...原创 2021-05-03 13:02:01 · 101 阅读 · 0 评论