Def greeting(name):
if ___ == "taylor":
return "welcome back taylor!"
___:
return "hello there, " + name
print(greeting("taylor"))
print(greeting("john"))
Answers
Answered by
1
def greeting(name):
if name=="taylor":
return"welcome back !"
else:
return "hello there," + name
print(greeting("taylor"))
print(greeting("john"))
Explanation:
Similar questions
Physics,
4 months ago
Business Studies,
4 months ago
English,
9 months ago
Chemistry,
9 months ago
Hindi,
1 year ago