mirror of
https://github.com/micropython/micropython.git
synced 2026-03-11 11:20:17 +01: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))
|