-1
私は、ファイルに書き込もうとしました:ファイルに書き込むPython、error?
f = open('parsed.txt', 'w')
f.write(url + '\n' + title + '\n' + email + '\n\n')
しかし、私はエラーを取得する:
Traceback (most recent call last):
File "C:/Users/Brand Cream/AppData/Local/Programs/Python/Python35/index.py", line 122, in parsePage
f = open('parsed.txt', 'w')
TypeError: open() takes 1 positional argument but 2 were given
間違っていますか?
あなたはあなたのコードで独自の 'open'機能を持つことが起こるのか? –
あなたは() ''オープン独自の機能を持っているか、あなたは 'から...インポート*'を使用して、それがoryginal 'オープン()'関数を上書きします。 – furas