Good time to all. The question is this. How can you implement dynamic output in kivy.

That is, for example, there is something like this:

for i in xrange(10): print('Print-' + i) 

The result I would like to get the same, which will be in a simple console.

 Print-1 Print-2 Print-3 

etc

    1 answer 1

    And what is the problem? The output of this will be, just need to convert i to a string:

     print('Print-'+str(i)) 

    or use the substitution:

     print('Print-%s'%i)