p
y
c
h
a
l
l
e
n
g
e
r
Home
Python Basics
Lists and Tuples
Exercise: Update element in list
Exercise: Update element in list
Update the
guest_list
. Replace 'Bob' with 'Erik'.
Premium
reset
def greet(name): return f"Hello, {name}!" print(greet("Erik"))
Python
Setting up Python environment...
Output