Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
f-string solution in Clear category for Say Hi by kkkkk
def say_hi(name: str, age: int) -> str:
"""Return fixed string using given name and age."""
return f"Hi. My name is {name} and I'm {age} years old"
Oct. 3, 2019
Comments: