- 博客(2)
- 收藏
- 关注
原创 Python OSError: [Errno 22] Invalid argument:的解决办法
今天在用到open函数时,始终报OSError: [Errno 22] Invalid argument:的错误,发现解决办法有以下几种:方法一:输入格式错误 f = open('F:\Python 3.6\test.txt','r')应修改为:f = open('f:\\Python 3.6\\test.txt','r')或:f = open('f:/Python 3.6/test.txt','...
2018-05-21 15:52:56 145203 28
原创 numpy.where的解释与用法
官方对于numpy.where的解释链接如下:https://docs.scipy.org/doc/numpy/reference/generated/numpy.where.html官方解释是有些难以理解,我将个人理解分享如下:numpy.where的格式:numpy.where(condition,x,y)condition:类数组对象,布尔逻辑(即True或False)。x,y:类数组对象,...
2018-05-08 15:09:23 5514
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人