Change Contents of the Bubble
Welcome to CS1315. Click on the python to add comments.

This page removed for FERPA compliance
View this PageEdit this PageUploads to this PageHistory of this PageHomeRecent ChangesSearchHelp Guide

day, month and year


import time

def day():
  now = time.ctime()
  return now[0:3]

def month():
  now = time.ctime()
  return now[4:7]

def year():
  now = time.ctime()
  fin = len(now)
  start = fin-4
  return now[start:fin]



Link to this Page