Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
nested for loop dilemma
#8
(Sep-11-2019, 05:29 PM)perfringo Wrote: One could start with observing pyramid and trying to find pattern(s).

We can observe that:

- first column is numbers from 1, 9
- number of items in row equals to the row number/first number in row (row #1 has 1 number, row #2 has two numbers .... row #9 has 9 numbers)
- numbers in row are multipliers of first number of row (a.k.a row number)

It follows that integers i with values 1...9 are emitted, then i is multiplied with values j in range 1, i + 1.

Visually it can be represented:

- > 1 (i) -> 1 * 1 (j)
- > 2 (i) -> 2 * 1 (j), 2 * 2 (j)
- > 3 (i) -> 3 * 1 (j), 3 * 2 (j), 3 * 3 (j)
...

Thanks for your guidance perfringo I appreciate it. I saw the pattern that part was very obvious to me but for some reason I could not lay in down in code, I believe its because this is my very first nested for loop task and its very new to me, I am being hit with a crazy amount of new info the last week I started with a software engineering bootcamp last Thursday and I have never coded prior to that, so really this is a whole new world to me, I am like a neathandral who just found fire for the very first time lol so if I sound very stupid its because Im a super noob and I am trying my best to stay above water, all of the advice I have received so far means a great deal to me you guys are top shelf

(Sep-11-2019, 05:52 PM)buran Wrote:
(Sep-11-2019, 05:45 PM)YoungGrassHopper Wrote: can you please explain how it works if you don't mind?
https://docs.python.org/3/library/functions.html#print

Hey buran Thanks for the sample code and info I appreciate it, I will have a look at it soonest : )
Reply


Messages In This Thread
nested for loop dilemma - by YoungGrassHopper - Sep-11-2019, 04:36 PM
RE: nested for loop dilemma - by ichabod801 - Sep-11-2019, 04:44 PM
RE: nested for loop dilemma - by YoungGrassHopper - Sep-11-2019, 04:51 PM
RE: nested for loop dilemma - by YoungGrassHopper - Sep-11-2019, 05:45 PM
RE: nested for loop dilemma - by perfringo - Sep-11-2019, 05:29 PM
RE: nested for loop dilemma - by YoungGrassHopper - Sep-11-2019, 05:52 PM
RE: nested for loop dilemma - by buran - Sep-11-2019, 05:50 PM
RE: nested for loop dilemma - by YoungGrassHopper - Sep-12-2019, 09:05 AM
RE: nested for loop dilemma - by buran - Sep-11-2019, 05:52 PM
RE: nested for loop dilemma - by jsira2003 - Sep-13-2019, 03:56 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Big O runtime nested for loop and append yarinsh 4 1,397 Dec-31-2022, 11:50 PM
Last Post: stevendaprano
  Nested for loops - help with iterating a variable outside of the main loop dm222 4 1,606 Aug-17-2022, 10:17 PM
Last Post: deanhystad
  How do I add another loop to my nested loop greenpine 11 4,594 Jan-12-2021, 04:41 PM
Last Post: greenpine
  Error on nested loop : Invalid syntax dvazquezgu 3 3,260 Nov-25-2020, 10:04 AM
Last Post: palladium
  dilemma with list comprehension spalisetty06 1 1,936 Aug-14-2020, 09:18 AM
Last Post: buran
  Nested loop indexing Morte 4 3,950 Aug-04-2020, 07:24 AM
Last Post: Morte
  Nested for loop not looping puttingwordstogether 0 1,728 Jun-16-2020, 11:15 PM
Last Post: puttingwordstogether
  Help: for loop with dictionary and nested lists mart79 1 1,875 Apr-12-2020, 02:52 PM
Last Post: TomToad
  Nested Loop for user input Ads 2 3,570 Dec-30-2019, 11:44 AM
Last Post: Ads
  openpyxl nested for loop help rmrten 3 5,706 Oct-16-2019, 03:11 PM
Last Post: stullis

Forum Jump:

User Panel Messages

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