Ad

Rupper rupper print (rup)

print("(rup)")

Paul Catteau is creating a new home security program that is voice activated and will let him in if his name is 'Paul Catteau'.

Your task is to write a program that will ask the user thier name and return "WWOOOOOOO WELCOME TO THE CATTEAU CHATEAU YOOOOOOOO!!!!" if the user says their name is 'Paul Catteau'

def catteau():
    name = input("What is your name? ").title()
    if name == "Paul Catteau":
        return  "WWOOOOOOO WELCOME TO THE CATTEAU CHATEAU YOOOOOOOO!!!!"