p
y
c
h
a
l
l
e
n
g
e
r
Home
Python Basics
Dictionaries
Exercise: Fill empty dictionary
Exercise: Fill empty dictionary
Fill the empty dictionary with the missing key-value pairs. Add the keys
name
and
age
and assign appropriate values.
Premium
reset
def greet(name): return f"Hello, {name}!" print(greet("Erik"))
Python
Setting up Python environment...
Output