1. ホーム
  2. python

[解決済み] TypeError: '_io.TextIOWrapper' オブジェクトが呼び出し可能でないため、テキストファイルの作成でエラーが発生する

2022-02-13 09:55:25

質問

    list = [Blarg, T2, T3]
    Rewrite(List)


    def Rewrite(New2):
        List_Length = len(New2)
        L = 0
        with open('Chronologiser2.BCF', 'w') as file_output:
            file_output('')

        while L < List_Length:
            with open('Chronologiser2.BCF', 'a') as file_output:
                Current_Text = New2[L]
                file_output(str(Current_Text) + '/n')
                L += 1

なぜ「TypeError: '_io.TextIOWrapper' object is not callable」エラーが出続けるのか、誰か説明してください。

どうすればいいですか?

を呼び出す必要があります。 write のメソッドを使用します。 file_output を直接呼び出さないでください。

file_output.write('')