I am attempting to create a program that will allow me to take in peoples info and then write it to an xml doc, save it, and then once the program is ran again, it will pick up from where I left off. All I am getting right now is I am overwriting the same line over and over. It shows
<person>
<name>Users Name</name>
</person>
and that is it. I need it to do
<person>
<name>User 1</name>
</person>
<person>
<name>User 2</name>
</person>
So on and so on... I am still working on the code, but there is not sense in working on the code if I cannot write to it. I have tried open('person.xml','(w,r,a') and still nothing. My code is
