The function is not returning the correct values. Can you figure out why?
def get_planet_name(id):
# This doesn't work; Fix it!
name=""
switch id:
case 1: name = "Mercury"
case 2: name = "Venus"
case 3: name = "Earth"
case 4: name = "Mars"
case 5: name = "Jupiter"
case 6: name = "Saturn"
case 7: name = "Uranus"
case 8: name = "Neptune"
return name
Example
get_planet_name(3)
# should return 'Earth'
Tests
get_planet_name(3)
get_planet_name(8)
get_planet_name(1)
get_planet_name(5)
Good luck!
This challenge comes from jhoffner on CodeWars. Thank you to CodeWars, who has licensed redistribution of this challenge under the 2-Clause BSD License!
Want to propose a challenge idea for a future post? Email yo+challenge@dev.to with your suggestions!