One wishes to write more information to a pre-existing file homeworld.csv), how does one accomplish such
a great feat?
In other words; open the file homeworld.csv within python, so we can write more information to the file.
If you believe that more than one answer applies choose the best answer.
Of = open("homeworld.csv", "a")
Of= open("homeworld.csv", "w")
("homeworld.csv", "r")
f.open("homeworld.csv", "w")
Of.open("homeworld.csv", "a")