Python practice
0/68

Instructions01Hello, name

Complete `greet` so it returns `"Hello, {name}!"` for any name.

Keep in mind

  • Return the string—do not only print it.
  • Keep the punctuation exact.

Examples

 greet("Ada")
"Hello, Ada!"
 greet("Guido")
"Hello, Guido!"
solution.py
Test console
Warming up Python…The first start downloads the browser runtime.