Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1 line solution in Clear category for Say Hi by Hunter_out
say_hi = lambda x,y: f"Hi. My name is {x} and I'm {y} years old"
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert say_hi("Alex", 32) == "Hi. My name is Alex and I'm 32 years old", "First"
assert say_hi("Frank", 68) == "Hi. My name is Frank and I'm 68 years old", "Second"
print('Done. Time to Check.')
March 20, 2020