Friday, December 13, 2019

Write a Python Program Code to Display Calendar

Write a Python Program Code to Display Calendar

Answer:
# Python Program - Display Calendar

import calendar
print("------Calendar Program in Python------\n");
print("Enter 'x' for exit.");
y = input("Enter Year: ");
if y == 'x':
    exit();
else:
    m = input("Enter month: ");
    yy = int(y);
    mm = int(m);
    print("\n",calendar.month(yy,mm));

No comments:

Post a Comment

Featured posts

Ethiopian culture calendar language

Ethiopian culture, calendar, language  The Ethiopian language, specifically Amharic, uses a script called Ge'ez script. It consists of 3...

Popular posts