0
Please check my code and help me to fix my problem
2 Answers
+ 3
the error message is quite helpfull here:
center()
TabError: inconsistent use of tabs and spaces in indentation
You are using tabs in your code, however everything inside your if statement:
if movie == 4:
is indented by blank characters.
change that to tabs and give it another try
+ 1
The if/elif statements inside your city function aren't indented.



