micropython/tests/basics/builtin_exec.py

7 wiersze
107 B
Python
Czysty Zwykły widok Historia

print(exec("def foo(): return 42"))
print(foo())
d = {}
exec("def bar(): return 84", d)
print(d["bar"]())