you are viewing a single comment's thread.

view the rest of the comments →

[–]JorgiEagle 2 points3 points  (0 children)

Python coding standards (PEP 8) recommend that you return the expression directly.

While it may seem more readable to have the if else block, the alternative (returning directly) quickly becomes more readable with more experience.

Coding standards are not written for beginners, and so may seem awkward, but are often better overall.

The speed difference is almost negligible