python 3无法写入文件

时间:2012-11-04 07:34:04

标签: python file python-3.x attributeerror

我的代码是:

from random import randrange, choice
from string import ascii_lowercase as lc
from sys import maxsize
from time import ctime

tlds = ('com', 'edu', 'net', 'org', 'gov')

for i in range(randrange(5, 11)):
    dtint = randrange(maxsize)                      
    dtstr = ctime()                                  
    llen = randrange(4, 8)                              
    login = ''.join(choice(lc)for j in range(llen))
    dlen = randrange(llen, 13)                          
    dom = ''.join(choice(lc) for j in range(dlen))
    print('%s::%s@%s.%s::%d-%d-%d' % (dtstr, login,dom, choice(tlds),
                                  dtint, llen, dlen), file='redata.txt')

我想在文本文件中打印结果,但是我收到了这个错误:

dtint, llen, dlen), file='redata.txt')
AttributeError: 'str' object has no attribute 'write'

1 个答案:

答案 0 :(得分:9)

file应该是文件对象,而不是文件名。文件对象有write方法,str对象没有。

来自print上的文档:

  

文件参数必须是具有write(string)方法的对象;如果它   不存在或Nonesys.stdout将被使用。

另请注意,该文件应该可以写入:

with open('redata.txt', 'w') as redata: # note that it will overwrite old content
    for i in range(randrange(5,11)):
        ...
        print('...', file=redata)

详细了解open函数here