+ 3
Why this is going wrong?
print (1) except ValvueError: print ("3.3") raise ValvueError print (2)
1 ответ
+ 10
print (1)
try:
raise ValueError
except ValueError:
print ("3.3")
print (2)
Except requires a try before.
print (1) except ValvueError: print ("3.3") raise ValvueError print (2)