pyjulia
pyjulia copied to clipboard
How can I reach the local namespace of a Julia function in python scripts?
Hi, I'm wondering how to reach a local variable in a Julia function. Say I have the following function in Julia:
cb = function () local = 1.0 py""" # How can I reach the variable 'local' here? """
Thanks!