Skip to content

Latest commit

 

History

History

python

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

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