Python Forum
How to make print without newline but wait in between each print?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to make print without newline but wait in between each print?
#1
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("=")
Reply
#2
A hint. end=''
Reply
#3
I don't understand.
Reply
#4
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.")
Reply
#5
(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:

import time print("And now for something ", end= '', flush = True) time.sleep(3) print("complely different.")

Thanks! But how do I add another print on the same line using this same code, or do I just add another flush?
Reply
#6
Can you explain more about what you want to accomplish? You can add as many print() function calls as you want.
Reply
#7
Actually I found it out. Just add another flush statement to the one above the other print statement.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to Randomly Print a Quote From a Text File When User Types a Command on Main Menu BillKochman 13 6,715 Dec-16-2025, 05:29 PM
Last Post: zodazy
  No new line from print in a browser Lou 13 1,074 Dec-01-2025, 06:39 PM
Last Post: noisefloor
  [split] print two different sequence number Reema 1 633 Nov-10-2025, 05:37 AM
Last Post: Gribouillis
  print does not open console in Linux Mint [Solved] Tycho_2025 5 705 Oct-04-2025, 08:52 AM
Last Post: Tycho_2025
  How to Print a Pyramid Asterisk Pattern in Python? williamclark 0 1,515 Mar-24-2025, 10:05 AM
Last Post: williamclark
Smile Print Mystery Rchrd 3 1,803 Nov-10-2024, 01:51 AM
Last Post: Rchrd
  print/save on pdf starwhale 3 1,573 Nov-08-2024, 10:59 PM
Last Post: Gribouillis
  print in shell: b ??? trix 18 5,111 Aug-30-2024, 04:36 PM
Last Post: trix
  Print text with big font and style tomtom 6 23,933 Aug-13-2024, 07:26 AM
Last Post: yazistilleriio
  XML minidom "Pretty Print" Lost Data marksy95 2 2,024 Jun-15-2024, 11:09 AM
Last Post: Larz60+

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020
This forum uses Lukasz Tkacz MyBB addons.
Forum use Krzysztof "Supryk" Supryczynski addons.