p
y
c
h
a
l
l
e
n
g
e
r
Home
Intermediate Python
Unpacking
Exercise: Ignore a Value While Unpacking
Exercise: Ignore a Value While Unpacking
Unpack
person
to grab
name
and
email
. Skip the age with
_
.
Premium
reset
def greet(name): return f"Hello, {name}!" print(greet("Erik"))
Python
Setting up Python environment...
Output