Hello everyone and thank you for stopping by to help me!
if user_name == "Dave":
return "Get off my computer Dave!"
user_name = "Malgosh"
print(dave_check(user_name))```
# This is the original content. The exercise wants me to make a new If-Statement.
This is what I have written as a response but I get an error constantly and I don't know why.
def dave_check_2(user_name):
if user_name == "angela_catlady_87":
return "I know it is you Dave! Go away!"
print(dave_check_2(user_name))
# I would love to know what I am doing wrong and why.
Thank you for your help everyone. I really appreciate it.