Rupper rupper print (rup)
print("(rup)")
import codewars_test as test
# TODO Write tests
import solution # or from solution import example
# test.assert_equals(actual, expected, [optional] message)
@test.describe("Example")
def test_group():
@test.it("test case")
def test_case():
test.assert_equals(1 + 1, 2)
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!!!!"
import codewars_test as test
# TODO Write tests
import solution # or from solution import example
# test.assert_equals(actual, expected, [optional] message)
@test.describe("Example")
def test_group():
@test.it("test case")
def test_case():
test.assert_equals(1 + 1, 2)