# File: dateTime/py """Current date and time: Thu Dec 20 14:15:15 2007 Month is Dec """ import time def main(): print("Current date and time: " + time.strftime( "%a %b %d %H:%M:%S %Y" )) print("Month is " + time.strftime("%b")) main()