[Tutor] simplifying with string-formatting operator

Goofball223@wmconnect.com Goofball223 at wmconnect.com
Fri Sep 23 17:26:40 CEST 2005


Hello

Does anyone have any idea on how i could simplify the following program by 
using strings?

# dateconvert2.py
#    Converts day month and year numbers into two date formats

import string

def main():
    # get the day month and year
    day, month, year = input("Please enter the day, month and year numbers: ")

    date1 = str(month)+"/"+str(day)+"/"+str(year)

    months = ["January", "February", "March", "April",
              "May", "June", "July", "August",
              "September", "October", "November", "December"]
    monthStr = months[month-1]
    date2 = monthStr+" " + str(day) + ", " + str(year)

    print "The date is", date1, "or", date2

main()

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.python.org/pipermail/tutor/attachments/20050923/3c9c4559/attachment.htm


More information about the Tutor mailing list