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 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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:

21st Jun 2021, 4:19 PM
Micheal Alfred
1 Answer
+ 2
Wrong Def >> def Else without if doesnt work def my_function(): a = 3 return a print my_function()
21st Jun 2021, 4:33 PM
Angela
Angela - avatar