Class Notes:
Class Description:
This class will teach you about variables in Python and If/Else statements. We'll talk about declaring and setting variables, the quirks of data types in Python and discuss methods that allow you to modify variables.
We will then discuss If/Else statements and how to have your script dynamically take actions based on the values of variables.
The projects you will work on will have you creating a few interactive scripts that allow you to enter input values and have the scripts do something based on those values.
The class will go over:
Declaring and Setting Variables
Variable Data Types
Finding the Auto Assigned Data Type of a Variable
Change the Data Type of a Variable
Concatenation with f Strings
If/Elif/Else statements and Conditionals
Input() Function
while True: Loops
Comments