p
y
c
h
a
l
l
e
n
g
e
r
Home
Python Basics
Strings I
Exercise: Concatenate strings III
Exercise: Concatenate strings III
Use the join method to concatenate the strings. Separate the strings by a comma followed by a blank space (, ).
Premium
reset
def greet(name): return f"Hello, {name}!" print(greet("Erik"))
Python
Setting up Python environment...
Output