2021-01-19 16:49:36 +03:00
|
|
|
let a, b, c = range(3)
|
|
|
|
print(a,b,c)
|
|
|
|
|
|
|
|
if True:
|
|
|
|
let a, b, c = range(3)
|
|
|
|
print(a,b,c)
|
|
|
|
|
|
|
|
try:
|
|
|
|
let a, b = range(3)
|
2023-11-25 05:11:56 +03:00
|
|
|
except as exception:
|
2021-01-19 16:49:36 +03:00
|
|
|
print(repr(exception))
|
|
|
|
|
|
|
|
try:
|
|
|
|
let a, b, c, d = range(3)
|
2023-11-25 05:11:56 +03:00
|
|
|
except as exception:
|
2021-01-19 16:49:36 +03:00
|
|
|
print(repr(exception))
|