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

Grocery business

 The grocery business involves the retail and distribution of food and household products. Here are some key aspects: Key Players: 1. *Super...