I wrote a simple calendar program that will display the calendar of the desired month but encountered a
similar error?Here full error Traceback (most recent call last): File "D:\Python\calendar.py", line 1, in <module> import calendar File "D:\Python\calendar.py", line 4, in <module> print(calendar.month(year , month )) TypeError: 'int' object is not callable
Here is my code
import calendar
year = int(input('Enter your year:'))
month = int(input('Enter your month:'))
print(calendar.month(year , month ))
Can you help me please?!