Can somebody tell me what is happening here | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can somebody tell me what is happening here

Is the output a real error or the 'coded error' https://code.sololearn.com/cqULnvjvsOky/?ref=app

2nd Jun 2019, 4:31 PM
Y AD Ù
Y AD Ù - avatar
1 Answer
+ 5
See how you get it working: try: name = "123" name2 += 1 # name2 is not defined!!! #raise NameError("Invalid name!") except Exception as e: print (name) print(e) #output is: 123 name 'name2' is not defined
2nd Jun 2019, 5:15 PM
Lothar
Lothar - avatar