真正的解决python报错TypeError: an integer is required (got type str)

看到网上有很多解决方法,比如加入encoding="utf-8"等等,这些试了都不好使,经过我的测验找到了报错的原因

open这个python函数有多个,如果不引入import os,默认代码编辑器里不会有报错,但运行就会报错,因为执行时用了其他库的open函数

所以我们import os即可
真正的解决python报错TypeError: an integer is required (got type str)_第1张图片
就比如这种情况,本地的init库里面有引入os,但这里还要再次引入os,防止open函数错误

你可能感兴趣的:(Windows,python,list,django)