0
Why the program is not returning any value
def spell(txt): return 6+6 txt = 2 spell(txt)
2 Answers
+ 4
It return but you are not using it.
print( spell(txt) )
+ 1
Hi, Wen Will !
Donât excpect to much of setting txt = 2.
def spell(txt): return 6+6 txt = 2 spell(txt)