Is it possible to get multiple values in android which is sent by python class using Chaquopy?
When a Python function returns multiple values (using the return a, b, c
syntax), it's actually returning a tuple. The easiest way to access the individual values in Java or Kotlin is to use PyObject.asList
.