Notes in Level 1: Level 1.1 Basics

To Subscribe, use this Key


Status Last Update Fields
Published 05/03/2024 A program that saves the code you enter in a text file.
Published 05/03/2024 A program that translates your source code into something computers can understand.
Published 05/03/2024 The name of the Python Integrated Development Environment.
Published 05/03/2024 How Python groups pieces of code to be processed together.
Published 05/03/2024 A label or container for data.
Published 05/03/2024 Used to set or assign a value.
Published 05/03/2024 Used to test for equality.
Published 05/03/2024 File extension used for Python source code.
Published 05/03/2024 Press to run programs in the Python shell.
Published 05/03/2024 Used for making single line comments which are ignored by the Interpreter.
Published 05/03/2024 A single line comment example.
Published 05/03/2024 Addition operator.
Published 05/03/2024 x is being assigned the value of 5.
Published 05/03/2024 Test if x is equal to 5.
Published 05/03/2024 x is less than y
Published 05/03/2024 X is greater than y
Published 05/03/2024 x is less than or equal to 5.
Published 05/03/2024 x is greater than or equal to 5.
Published 05/03/2024 x is not equal to 5.
Published 05/03/2024 Command to print a message on screen.
Published 05/03/2024 Command to display the text string "cheese".
Published 05/03/2024 Command to obtain user input.
Published 05/03/2024 Code example: asks the user to enter a number  of cheeses and saves it as a variable called n_cheeses.
Published 05/03/2024 Converts object to whole numbers (if possible).
Published 05/03/2024 Creates a variable (guess) and converts the number entered (g) into an integer.
Published 05/03/2024 The beginning of an if else branch.
Published 05/03/2024 Imports a library called 'random' so you can use randint()
Published 05/03/2024 The end of an if else branch.
Published 05/03/2024 Begins a 'while loop'. Repeats until condition is false.
Published 05/03/2024 While the variable 'guess' is not equal to 5:
Status Last Update Fields