I\'m practicing the management of .txt files in python. I\'ve been reading about it and found that if I try to open a file that doesn\'t exists yet it will create it on the
file = open("path/of/file/(optional)/filename.txt", "w") #a=append,w=write,r=read any_string = "Hello\nWorld" file.write(any_string) file.close()