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!
print("Hi my name is helen I am 10 years old.")
print("I ate 3 pies.")
print("I like Python")
G=True
print(G, sep=',')
IlikePython=True
print(IlikePython, sep=',')
print(5//3)
print(5*2)
print(1/3)
print(1.5/2.1)
print(2*1.5)
print(9*9.5433333333332)