0
What is the meaning of the hidden test cases in code coach
3 ответов
+ 1
That was right tnx
+ 1
Now i know that at least one of the hidden test case might be grammar
0
Here is my code in the jungle camping test
animal = {
"Grr" : "Lion",
"Rwar" : "Tiger",
"Ssss" : "Snake",
"Chirp" : "Bird"
}
animal_sound = input(" ").split(" ")
output = " "
for i in animal_sound:
output += animal[i] + " "
print(output)
I don't know why it doesn't work