I am trying to write a talk bot program in python. I'm trying to display how old they are in years, and how long untill they will be the next year older. like if 18 and 12 months 30 days old like..
timetillnext=(dont know what goes here)
bday=raw_input("What day were you born?: ")
bmonth=raw_input("And the month?: ")
byear=raw_input("And what about the year?: ")
if byear <= "1990":
byear=21
if bmonth <="May"
bmonth=5
etc,etc,etc.
print ("Wow your already")+byear
print("And only %time in years, months, and days% untill you are %next year older%")
How do I make the program know the current time, so it can give a
print("wow you have only" %yearstill%, %monthstill%, %daystill% "till you are" %currentage%+1)
1
Expert's answer
2011-08-23T13:37:14-0400
You can use the datetime module in Python e.g.
import datetime
now = datetime.datetime.now()
print print "Current date and time using str method of datetime object:" print str(now)
Comments
Leave a comment