- 1
Can any one help me out with python. Am using python 3.6 but some of my code is not working here is the code
Def (my_function(): a =3 return a else: print (my_function()) And here is the result. Call back resent error:
1 Odpowiedź
+ 2
Wrong Def >> def
Else without if doesnt work
def my_function():
a = 3
return a
print my_function()