Fork me on GitHub
#conjure
<
2024-02-08
>
The Continium12:02:26

Hi @olical Is there a way to get the output from Python to be updated as it is produced rather than when the prompt appears. For example output these numbers as they appear rather than print the full list in one go at the end.

from time import sleep
for i in range(10):
    sleep(0.5)
    print(i)
Thanks