python使用open函数时报错 an integer is required

python使用open经常报错:TypeError: an integer is required的解决方案
错误是由于从os模块引入了所有的函数导致的,os模块下有一个open函数,接受整型的文件描述符和打开模式,from os import *引入os模块的open函数,覆盖了python内建的open函数,导致错误。
删除from os import *这行,然后再根据需要,指定引入os模块下的函数
建议任何时候都不要使用from module import *方式引入模块函数。用到哪个引入哪个

*附上 import 个各类用法 想要调用numpy中函数时
(1)import numpy 调用整个包

 import numpy 
 group=numpy.array([[1.0,1.1],[1.0,1.0],[0,0],[0,0.1]])
 #如果引入的包过长,可以用 np代替
 import numpy as np
 group=np.array([[1.0,1.1],[1.0,1.0],[0,0],[0,0.1]])

(2)from numpy import* 包含所有的函数

from numpy import*
group=array([[1.0,1.1],[1.0,1.0],[0,0],[0,0.1]])

(3)from numpy import array 只调用numpy里的array函数

from numpy import array
group=array([[1.0,1.1],[1.0,1.0],[0,0],[0,0.1]])

你可能感兴趣的:(python学习)