Python 显示日历程序

Python 显示日历程序

在Python编程中,显示日历很简单。要做到这一点,您需要导入Python自带的日历模块。

import calendar
 And then apply the syntax
(calendar.month(yy,mm))

请见此示例:

import calendar
# Enter the month and year
yy = int(input("Enter year: "))
mm = int(input("Enter month: "))

# display the calendar
print(calendar.month(yy,mm))

输出:

Python 显示日历程序

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程