0
Same problem yaar? Donno whats wrong with the code
#def shout(word): # """ #Print a word with an #exclamation mark following it. #""" # print(word + "!") #shout("spam") def trythis(word): print (word + "yea") trythis ("howarr")
1 Antwort
0
You do not execute function. Your intendation shows us that instead of executing it you made recursion.
In simplier words just delete spaces before "trythis ("howarr")"