Hacker News new | ask | show | jobs
by nemothekid 4189 days ago
>Python3 was never intended to be a "one way to do everything language".

Python's motto is "There should be one-- and preferably only one --obvious way to do it." - its not meant that Python should be the only tool, but that written python code should only have one have common implementation. (https://wiki.python.org/moin/TOOWTDI)

Golang also seems to share the same ideal when it comes to written code.