11 lines
273 B
Python
11 lines
273 B
Python
|
print("[Python] Attempting import")
|
||
|
import scriptable
|
||
|
|
||
|
print(f"[Python] calling fibonacci(8): {scriptable.fibonacci(8)}")
|
||
|
print(f"[Python] calling fibonacci(15): {scriptable.fibonacci(15)}")
|
||
|
|
||
|
import venv
|
||
|
print("[Python] Importing library installed with pip")
|
||
|
import numpy
|
||
|
|