Hi guys I am back sorry for too late just due to business in class I was unable to visit this site. But for long time I was planning to ask this question but was too busy.

I am working on graphic creation in python and I created a basic form in python and now i want to save the person's info in that form when a user hit save button.

how should i save that info so that i can read it.

Save it to a text file:

f = open('my_file.txt', 'w')
#
f.write( '%s\n%s\n' % ( usr_name, usr_number ) )
f.close()
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.