You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
273 B
15 lines
273 B
print(repr(IndexError()))
|
|
print(str(IndexError()))
|
|
|
|
print(repr(IndexError("foo")))
|
|
print(str(IndexError("foo")))
|
|
|
|
a = IndexError(1, "test", [100, 200])
|
|
print(repr(a))
|
|
print(str(a))
|
|
print(a.args)
|
|
|
|
s = StopIteration()
|
|
print(s.value)
|
|
s = StopIteration(1, 2, 3)
|
|
print(s.value)
|
|
|