An Introduction to programming using python
An Introduction to programming using python
Course Glossary
Throughout the course, you might find some new words, phrases and
abbreviations being used – you can always come to this document to look up
any unfamiliar terms!
Word Definition
A* A path finding algorithm that finds an optimal path from a
graph.
Hello World program a small program in a programming language, usually the first
program one creates in a new language as a validation that
everything works.
Input function a built-in Python function that allows a user to provide input
to a program.
Logic operators operators that combine logic propositions (e.g. and, or, not).
Path Finding the process of finding a path between two points in a graph or
network.
Data Types a classification of the type of data that a variable can hold
(e.g. integers, strings, booleans).
Print function a built-in Python function that displays output to the console
or terminal.
Text Editor a program used to create and edit text files, often used for
writing and editing code. Examples include Visual Studio
Code, Vim, and Sublime Text among others.
Visual Studio Code a popular text editor for writing/editing code developed and
maintained by Microsoft and the open-source community.