Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 509 Bytes

File metadata and controls

22 lines (18 loc) · 509 Bytes

Python

Interpreted language, in order to run the code you must first install python latest is version 3.x

Install

If you are running a Linux or Unix distro python may already be installed.

  • Ubuntu / Debian sudo apt-get install python -y
  • Redhat sudo yum install python -y

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

Compile / interpret

# source in fn.py
python fn.py
# &/or if interp designator used:  #!/usr/bin/python
./fn.py

Reference(s)

Learning