What is the 'Zen of Python'?

Asked by emeka_nwankwo · 6 months ago

1 Answer

18
amorebise · 6 months ago Top Answer

It’s a list of 19 guiding principles for writing Python code. You can see it by typing import this in Python.

My favorite is: "Simple is better than complex." It’s a great philosophy for coding and for life. Don't make things harder than they need to be.

Log in to add a comment.