Re: Browse the values ​​of a variable with Flask and Owlready

Posted by Jiba on
URL: http://owlready.306.s1.nabble.com/Browse-the-values-of-a-variable-with-Flask-and-Owlready-tp2467p2471.html

Hi,

You can iterate through the values of the data property as follows:

for value in onto.personne2.possede:
      print(value)

or:

for value in pers2.possede:
      print(value)

Jiba