Python Calendar [v1.0]

""" Simple Calendar [v1.0] Displays a calendar with adjustable values to update the calendar of your preference """ import calendar # Function to show calendar def showCalendar(yy, mm): return(calendar.month(yy, mm)) print(showCalendar(2016, 2))
Simple Calendar [v1.0]

Displays a calendar with adjustable values to update the calendar of your preference

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.