반응형
For this problem you must create a program that says who ate the last cookie. If the input is a string then "Zach" ate the cookie. If the input is a float or an int then "Monica" ate the cookie. If the input is anything else "the dog" ate the cookie. The way to return the statement is: "Who ate the last cookie? It was (name)!"
Ex: Input = "hi" --> Output = "Who ate the last cookie? It was Zach! (The reason you return Zach is because the input is a string)
Note: Make sure you return the correct message with correct spaces and punctuation.
Please leave feedback for this kata. Cheers!
Solution:
def cookie(x):
name = {int: "Monica", float: "Monica", str: "Zach", bool: "the dog"}[type(x)]
return f"Who ate the last cookie? It was {name}!"
반응형
'나는 이렇게 학습한다 > Algorithm & SQL' 카테고리의 다른 글
0203. Parse float (0) | 2023.02.03 |
---|---|
0202. Beginner Series #1 School Paperwork (0) | 2023.02.02 |
0131. You only need one - Beginner (0) | 2023.02.01 |
0130. Grasshopper - Personalized Message (0) | 2023.01.31 |
0129. Super Duper Easy (0) | 2023.01.29 |