« All Events
12 PM – Intro To Python – Gamas
April 19 @ 12:00 pm - 1:00 pm
Today We Did
- We learned about String built-in functions: .title(), .upper(), .lower()
- We learned about how to combine String using f string.
Homework
- Reviewed last week homework, especially how to combine String together
- Create apr_19_string2_hw.py
- Copy below codes and add codes to it so it can print “William and John are friends.” You have to use f string to combine friend_1 and friend_2 variables. Look at what you have learned in the class AND also in page 21 from the text book.
friend_1 = "william"
friend_2 = "john"
- Answer question from page 25, 2-3 from the textbook.