Apr-01-2021, 12:00 AM
So how do I make a print without newline and have it wait in between print?
My current code:
My current code:
print("=", end= '') time.sleep(3) print("=") | How to make print without newline but wait in between each print? |
| Apr-01-2021, 12:00 AM So how do I make a print without newline and have it wait in between print? My current code: print("=", end= '') time.sleep(3) print("=") Apr-01-2021, 12:41 AM A hint. end='' Apr-01-2021, 12:44 AM I don't understand. Apr-01-2021, 02:45 AM (This post was last modified: Apr-01-2021, 02:45 AM by BashBedlam.) If I understand the problem correctly, you need to flush the print buffer after the first print statement. Try this: import time print("And now for something ", end= '', flush = True) time.sleep(3) print("complely different.") (Apr-01-2021, 02:45 AM)BashBedlam Wrote: If I understand the problem correctly, you need to flush the print buffer after the first print statement. Try this: Thanks! But how do I add another print on the same line using this same code, or do I just add another flush? Apr-01-2021, 09:57 PM Can you explain more about what you want to accomplish? You can add as many print() function calls as you want. Apr-01-2021, 09:59 PM Actually I found it out. Just add another flush statement to the one above the other print statement. |
| |