p
y
c
h
a
l
l
e
n
g
e
r
Home
Intermediate Python
Classes and OOP I
Objects in a Loop
Objects in a Loop
Loops over lists of objects work exactly like loops over lists of numbers. Filter a list of students by grade.
Premium
reset
def greet(name): return f"Hello, {name}!" print(greet("Erik"))
Python
Setting up Python environment...
Output