使用calendar模块,从键盘输入年份,输出当年的日历
import calendar
year=_____(input(“请输入年份:”))
table=_________________(year)
print(table)