Install Python3

Introduction

Life is short you need Python

Python is an interpreted high-level general-purpose programming language. Its design philosophy emphasizes code readability with its use of significant indentation. Its language constructs as well as its object-oriented approach aim to help programmers write clear, logical code for small and large-scale projects.

Source: https://en.wikipedia.org/wiki/Python_(programming_language)

Install Python3

Download pkg

https://www.python.org/downloads/

If you are using Mac – System Preferences – Security & privacy – Allow apps downloaded from python.org

$ python3 --version
Python 3.9.0
$ which python3
/usr/local/bin/python3

Print Hello World with Python

$ python3
Python 3.9.0 (v3.9.0:9cf6752276, Oct  5 2020, 11:29:23) 
[Clang 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> print("Hello World")
Hello World

Leave a Reply

Your email address will not be published.

ANOTE.DEV