AttributeError: ‘_io.TextIOWrapper‘ object has no attribute ‘softspace‘

这里写目录标题

1、问题展示

问题展示:
AttributeError: ‘_io.TextIOWrapper‘ object has no attribute ‘softspace‘
当我在学习文件模块的时候遇到这样的一个情况,遇到这种情况该怎么解决饿呢?

2、解决办法

这个就涉及到一个版本问题,大家都知道,Python主要分为Python2和Python3,当我们查看Python官网的时候就可以看到。
(Python官网地址:www.python.org)
AttributeError: ‘_io.TextIOWrapper‘ object has no attribute ‘softspace‘
可知,在python3.0以上版本中,softspace属性可能已经被移除了,于是使用命令行 py -2 (如果没有安装python2版本,则需先安装python2,python2与python3可同时安装,windows环境下使用py -2和py -3来实现切换)切换到python2.7版本,打开一个文件查看softspace属性,命令行正常执行。

上一篇:属性选择器


下一篇:AttributeError: module ‘tensorflow‘ has no attribute ‘placeholder‘