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