Python Forum
Need help on this nested loop task
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Need help on this nested loop task
#5
It is always good idea to start with clarity in mind. What is required:

Quote:Write some code that will print the lyrics that run through
your head. It should keep repeating each line one-by-one
until you've reached lines_of_sanity lines. Then, it should
keep going to finish out the current verse. After that, print
"MAKE IT STOP" in all caps (without the quotes).

Using the initial inputs from above, this
should print 9 lines: all 4 lines of the list twice, followed
by MAKE IT STOP"

So task is actually: print all items in list x times where x is rounded up division of lines_of_sanity and number of lines in verse (i.e. length of list).

As this is homework just pieces and bits:

>>> list_ = ['bacon', 'spam']
>>> print(*list_, sep='\n')
bacon
spam
>>> for _ in list_:
...     print(*list_, sep='\n')
...
bacon
spam
bacon
spam
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply


Messages In This Thread
Need help on this nested loop task - by PP9044 - Apr-07-2021, 02:03 AM
RE: Need help on this nested loop task - by MH90000 - Apr-16-2021, 08:12 AM
RE: Need help on this nested loop task - by MH90000 - Apr-16-2021, 08:23 AM
RE: Need help on this nested loop task - by perfringo - Apr-16-2021, 01:31 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Nested if stmts in for loop johneven 2 5,956 Oct-19-2019, 04:05 AM
Last Post: xeedon
  Nested for loop issue always using index 0 searching1 2 2,644 Dec-30-2018, 09:17 AM
Last Post: searching1
  nested while loop flow help Ponamis 4 3,044 Nov-02-2018, 11:22 PM
Last Post: Ponamis
  Nested loop Tryhard20 3 5,799 Sep-05-2018, 04:57 AM
Last Post: volcano63
  Nested Loop multiplication table SushiRolz 3 10,328 Feb-28-2018, 04:34 AM
Last Post: Larz60+
  Nested Loop to Generate Triangle Babbare 12 11,941 May-29-2017, 05:00 AM
Last Post: buran

Forum Jump:

User Panel Messages

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