Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 1.08 KB

python.md

File metadata and controls

59 lines (39 loc) · 1.08 KB

What is Python

Python is a programming language that lets you work quickly and integrate systems more effectively. -- Python homepage

Or a little more in the What is Python? Executive Summary

Sites

  1. Python homepage
  2. Python Enhancement Proposals (PEP)
    1. Coding standards: PEP-8
  3. PEP-8 checker

Install

Instructions for installing Python3.

CentOS

Ubuntu

macOS

  1. Install HomeBrew. Example:

    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
  2. Install python3 using brew. Example:

    brew install python3

Windows

Test

  1. Test

    python3 --version

Troubleshooting

References