mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
6 lines
101 B
Python
6 lines
101 B
Python
import sys
|
|
print(callable(1))
|
|
print(callable("dfsd"))
|
|
print(callable(callable))
|
|
print(callable(sys))
|