Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help Loop new line
#1
every time I loop my program it starts off at the same line the issue is this loop
how can I implement
Quote:"\n"
the new line command into my loop

any help please

at the moment this is what my loop statment is like:


for partition_num in range (0, 4):

i need to implement "\n" into

this :

for partition_num in range (0, 4):
Reply
#2
please try to explain why you need the newline?
Also, please post your code.
Reply
#3
(Nov-21-2018, 11:03 PM)Larz60+ Wrote: please try to explain why you need the newline? Also, please post your code.

I would post my code online but someone might copy it as its homework

(Nov-21-2018, 11:03 PM)Larz60+ Wrote: please try to explain why you need the newline? Also, please post your code.

i have a few input statements when i loop i need to put them on new lines
Reply
#4
for partition_num in range (0, 4):
    print(partition_num)
The print function adds automatically a newline and on windows carriage return + newline.
You can also control the end. Look here: https://docs.python.org/3/library/functions.html#print

If you want something else, you have to be more concrete. In addition, usually we only support, if we see code.
No code, no help.
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Trying to loop through code to plot seaborn line plots across multiple subplots eyavuz21 0 2,869 Dec-05-2022, 10:46 AM
Last Post: eyavuz21
  Skipping line in text without Restarting Loop IdMineThat 4 2,929 Apr-05-2022, 04:23 AM
Last Post: deanhystad
  How to prevent python from going to new line in for loop? idknuttin 3 7,609 Feb-11-2022, 05:40 AM
Last Post: deanhystad
  How to make for loop display on 1 Line Extra 3 2,309 Jan-12-2022, 09:29 PM
Last Post: Extra
  Python-for loop print into single line dragan979 4 8,315 Nov-23-2018, 01:01 AM
Last Post: wavic
  Loop thru textfile, change 3 variables for every line herbertioz 11 11,598 Nov-10-2016, 04:56 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020