This lesson is in the early stages of development (Alpha version)

Python on Raspberry Pi: Glossary

Key Points

Introduction
  • Python is an interpreted scripting language used widely in science.

  • Python has a large library of useful resources for scientific computing.

Installation and Setup
  • There are (probably multiple versions of Python already installed.

  • Virtual environments allow you to set up a custom environment for each project.

Hello World
  • Create a text file

  • Use a shebang to reference the executable

Flow Control
  • Loops can be unconditional or conditional

Variable in Python
  • Python is strongly, dynamically typed

Formatting Output
  • Combining strings and variables can help structure output.

  • There’s more than one way to do it.

Useful Libraries
  • Libraries are collections of useful code.

  • You can make your own libaries too.

Glossary

FIXME