Hello everyone! Wanted to apologize for all of the technical difficulties that occurred today that caused some delays and halts during class. Here are the resources we went over, the recordings will be sent via email!
Homework:
Giver 3 examples of each data type (2 for Boolean)
Create the variables name, grade, color, and another variable for something you like. Use f-strings/concatenation to print the following string but with your information.
Shravya is in 11th grade, and her favorite color is blue.
Shravya's favorite movie is Thor: Ragnarok.
Resources:
Class slides: https://docs.google.com/presentation/d/1sEZUlUHfWHJThTd8MP667DqFoJxvlKXwJfRNZZHwkoA/edit?usp=sharing
Class code: https://replit.com/@arnavpandey722/IntroToPython-Wk1Day1?v=1
Contact info:
shravyassathish@gmail.comĀ (mentor)
mailtoarnavpandey@gmail.com (TA) Make sure to "Add a comment" with your code to the homework in order to submit your homework assignment!
string1 = "hello1"
string2 = "a"
string3 = "bye"
integer1 = 8
integer2 = 89
integer3 = 641
float1 = 9.06
float2 = 4.1
float3 = 5.67
bool1 = True
bool2 = False
name = "Brian"
grade = 1
favColor = "red"
movie = "Ratatouille"
print(f'{name} is in {grade}st grade, and his favourite color is {favColor}.\n{name}\'s favourite movie is {movie}.')