piixiiees
09/19/2020, 3:53 PMRick Lamers
import orchest
orchest.output([1, 2, "a"])
In the next step you could access the inputs using
import orchest
[input1] = orchest.get_inputs()
print(input1) #-> [1, 2, "a"]
piixiiees
09/27/2020, 6:59 PMRick Lamers