It’s Python, Not Python 2, Not Python 3

There’s no “Python 2” or “Python 3”, the language is same as before. Python 2.x is legacy, Python 3.x is the present and future of the language — Python2 or Python3 This whole debate makes newcomers to run away, it’s confusing, nonsense and …

Similar

Python -m

python -m lets you run modules as scripts. If your module is just one .py file it'll be executed (which usually means code under if __name_...

Read more »