takumitakumigreen
@takumitakumigreen

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

pyscriptでtxtファイルに書き込み

pyscriptでtxtファイルに書き込みをしたいです。
githubで下記のようにしましたが、txtファイルに書き込めません。
方法を教えてください。

:bow_tone1:

該当するソースコード

ソースコードを入力
```<py-script>
       def coment_keep(coment):
           f = open(f'coment.txt', 'w')
           f.write(coment)
           f.close()
    </py-script>


githubではファイルに書き込みができないのでしょうか?
それともjavaで書かないといけないのでしょうか?

0

1Answer

writeしたファルをreadしてみましたか?

試していませんが、↓こちらのサイトの情報によると、普通にread/writeできるようです。

1Like

Comments

  1. ありがとうございます
    readしてみたら書き込まれてました

Your answer might help someone💌