I've run in to a problem with my code. I'm trying to create a game for me and my friends just to have some fun togheter and challenge my self. The problem I've gotten is that for some reason my code can't write in .txt files and save that information if you're using the link to directly run the code: https://testing-accounts.carlliljencrant.repl.run and you can not write in the text file so that i can see it in the text file using this link either: https://repl.it/@CarlLiljencrant/testing-accounts Does someone have a solution to this?
Using .txt files in python
I've run in to a problem with my code. I'm trying to create a game for me and my friends just to have some fun togheter and challenge my self. The problem I've gotten is that for some reason my code can't write in .txt files and save that information if you're using the link to directly run the code: https://testing-accounts.carlliljencrant.repl.run and you can not write in the text file so that i can see it in the text file using this link either: https://repl.it/@CarlLiljencrant/testing-accounts Does someone have a solution to this?
You could use
a = append and add
w = write and replace.
file = open("Whatever you want.txt", "a")
file.write(whatever)
file.close()
I wasn't assigning variables!