Characteristics of Python?
Why use Python?
What are Python’s Features?
What are the uses of Python
What are the uses of Python in Embedded Systems?
When not to use Python
What is Linux?
It is a secure open source operating system
What is a distro?
A set of software components assembled into a working whole that are distributed to the community
What is a Window Manager?
A system software that controls placement and appearance of windows within a windowing system in a GUI
What is a Shell?
It is a program that is a command-line interpreter that lets users control their OS via a command line interface.
What is a package manager?
A collection of software tools that automate the process of installing, upgrading, configuring and removing computer programs in a consistent manner.
What are shell commands to list/change directories or display manuals?
To list directories you can use ls -al or ls -d*/ for only directories.
To change directories use cd directory
To display manuals use man followed by the program you want to learn about.
How is the Linux file system organised?
The file system is designed to manage data by organising them into files and directories, which are accessed and modified by users and applications.
List the steps to setup the raspberry pi (incl remote)
What are some software you can use to remote into a rpi?
Putty with SSH
RealVNC - 3B+
TigerVNC - 4B
What would would be an example of a python list:
L1 = [‘micro’, ‘software’, 1990, 99.8 ]
Given a list L1 = [‘micro’, ‘software’, 1990, 99.8 ],
What would L1(2:4) Represent ->
1990, 99.8
What is a Python Dictionary
It is python’s take on hashtables which store key-value pairs. Key being the identifier and value being the element being stored.