Is there a way to get a string from a user and convert it into a python code?
let pyString = """
start = 'hello'
end = 'world'
print(start + ' ' + end)
"""
func py(input: String) {
// run input as python
}
py(input: pyString)
// output: "Hello world"