我試着使用Python日曆模塊在3.5.2版本:日曆模塊不能正常工作
import calendar
yy = 2016
mm = 12
# To ask month and year from the user
# yy = int(input("Enter year: "))
# mm = int(input("Enter month: "))
display=calendar.calendar(yy,mm)
# display the calendar
print(display)
但每次我嘗試運行它,崩潰,並說:
line 2, in <module>
import calendar
line 4, in <module>
cal = calendar.month(2016, 2)
AttributeError: module 'calendar' has no attribute 'month'
相反,我在終端(使用Python 2.7)試過這個,並且它按照它所告訴的那樣做了!
就不清楚爲什麼這並不在Python的
愚蠢的問題,但你是如何完全調用它,並與什麼python版本?它在這裏完美工作(Ubuntu,python 3.5.2),所以它應該按照這個:https://docs.python.org/3/library/calendar.html –