Date And Time

  The coding script Date And Time is a script used to tell the current date and time. We do this by first setting up a simple variable for “datetime.now()” which is the script that will tell us the time and date. For my example I set my string variable as “now” so I did “now= datetime.now()” so every time I type in the string “now” the program will know that it is “datetime.now()” for short. Then we type in “Print ”%s/%s/%s %s:%s:%s” the strings here will set the time and date format as shown “mm/dd/yyyy hh:mm:ss” after that we type in (now.month, now.day, now.year,now.hour, now.minute, now.second) to fill in the empty strings with the script itself and when you press enter the script should give you your current time and date!