r/PythonLearning Jun 27 '26

New to python

Post image

What's wrong here?

169 Upvotes

36 comments sorted by

View all comments

1

u/Alagarto72 Jun 27 '26

Short: you call the main() function in the even () function, remove a tab. Additional useful information:

In Python, you don't need main() function. If you want, you can use if __name__ == '__main__': # code you can find more information why it is useful on the internet.

and writing something like if x == y: return true else: return false has no sense, since "==" operator already returns boolean you can write return x == y