DEV Community

Discussion on: In Your Opinion, What Makes Code Pythonic?

Collapse
 
patarapolw profile image
Pacharapol Withayasakpunt • Edited

I followed effectivepython.com/ but now I am moving away from Python toward JS, considering thing like JSPerf, ESLint, Prettier.

  • Yes, there is still debate whether to follow Airbnb / Google / Standard...
  • I also consider Functional and Immutability. I also heard about pure functions and side effects.

But Python does have PyLint, though. But, PyCharm seems to guide me towards PEP8 better (than VSCode.)

Collapse
 
seanolad profile image
Sean

Yeah, I've been trying to write pure functions, especially while doing any form of problem solving or functional programming, and thanks for the tip about pycharm.