7 lines
130 B
Python
7 lines
130 B
Python
|
# MicroPython doesn't support tuple argument
|
||
|
|
||
|
try:
|
||
|
"foobar".endswith(("bar", "sth"))
|
||
|
except TypeError:
|
||
|
print("TypeError")
|