my_list
partial_list
Tomorow's Class is in Belk Gym
Thursday class:
Mr. Lapinel absent tomorrow (Lesson 3.4 is on your own)
Lesson 3.3 today
for
in
fruits = ["apple", "banana", "cherry"] for fruit in fruits: print(fruit)
nums = [10, 20, 30] for i in range(len(nums)): print(i, nums[i])
colors = ["red", "green", "blue"] if "red" in colors: print("Yes, red is here!")
pets = ["dog", "cat", "fish"] if "hamster" not in pets: print("Hamster not found")
nums = [1, 2, 3, 4, 5] for n in nums: if n % 2 == 0: print(n, "is even")