Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a newbie in Python ... i need a help.. i tried to solve this since last week but i can't found solution.. below is my script.. the script is about saving friend's birthday in txt file. Let say that today i insert two friend's birthday then i closed my python. The next day i want to add 2 more friend's birthday, so when i re-running the script, it will overwrite the output file (but the birthday inserted today will append to birthday inserted yesterday in that file as i used 'a'=append), but actually i hope to get a new output filename (different output filename with yesterday such as Birthday1.txt, Birthday2.txt, etc) but still append birthday from yesterday ? i tried use rename function but it was not i'm looking for...

loop=1 choice=2

while loop==1:

print "*********************************************"
print "Press 1 to input your friend's name and birthday"
print "Press 0 to exit this e-book"
print "*********************************************"
choice = input("Choose your option: ")

if choice ==1:
    friend = raw_input ("Name: ")
    birthday = raw_input ("Birthday: ")
    print "*********************************************"
    print friend, "'s birthday is on ", birthday, "recorded"
    print "*********************************************"

    FILE = open("Birthday.txt", "a")
    FILE.write((friend + '\t' + birthday + '\n'))
    FILE.close()

else:
    loop=0

print "Thank you for using this e-book. "

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.