← Back to challenges

Return Something to Me!

PythonMediumlanguage_fundamentalsstrings

Instructions

Write a function that returns the string "something" joined with a space " " and the given argument a.

Examples

give_me_something("is better than nothing") ➞ "something is better than nothing"

give_me_something("Bob Jane") ➞ "something Bob Jane"

give_me_something("something") ➞ "something something"

Notes

Assume an input is given.

python3
Loading editor…
to run
Walks through the solution with reasoning and edge cases.
Next: Basketball Points