Hola a todos! Estoy atascado en el ejecicio de def hello(): return “Goodbye, Mars!”
He probado de todas las manera y no puedo conseguir el return de ‘Goodbye, Mars!’
y el print(‘¡Hola, mundo!’)
Notice that you have print
not return
. One is for output, the other is for the return.
The tests are expecting a return of "hello, World"
and not output, which is what print
would be expected to do.