Vor- und Nachteile der Python -Flush -Druckfunktion

from time import sleep

# output is flushed here
print("Hello, world!", end='', flush= True)
sleep(5)
print("Bye!!!")
slaff