Python Forum
Loop inside loop inside loop
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Loop inside loop inside loop
#4
(Mar-16-2020, 09:52 AM)buran Wrote: can you show sample code and explain better what you want (e.g. break out of the inner most loop into upper level, or break out of all netsed loops, etc.), because your setup is not very clear. Otherwise the answer is to use break.

elements = "qwertyuiop"
elements_list = list(elements)

password = input("enter: ")




for a in elements_list:
////for b in elements_list:
////////for c in elements_list:
////////////print(a+b+c)

////////////if a+b+c == password:
////////////////break

Reply


Messages In This Thread
Loop inside loop inside loop - by L0RTK1PAN1DZ3 - Mar-16-2020, 09:46 AM
RE: Loop inside loop inside loop - by buran - Mar-16-2020, 09:52 AM
RE: Loop inside loop inside loop - by perfringo - Mar-16-2020, 09:57 AM
RE: Loop inside loop inside loop - by L0RTK1PAN1DZ3 - Mar-16-2020, 09:58 AM
RE: Loop inside loop inside loop - by buran - Mar-16-2020, 10:44 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Variable being erased inside of if statement deusablutum 8 590 Jun-15-2024, 07:00 PM
Last Post: ndc85430
  Need an alternative to brute force optimization loop jmbonni 5 1,558 Jun-05-2024, 02:21 AM
Last Post: stevejobb
  Need help with a while loop ampereap 4 326 May-31-2024, 02:25 PM
Last Post: ampereap
  problem program runs in a loop jasserin 0 248 May-18-2024, 03:07 PM
Last Post: jasserin
  [SOLVED] Loop through directories and files one level down? Winfried 3 504 Apr-28-2024, 02:31 PM
Last Post: Gribouillis
  Loop through all files in a directory? Winfried 10 964 Apr-23-2024, 07:38 PM
Last Post: FortuneCoins
  for loop not executing Abendrot47 2 427 Apr-09-2024, 07:14 PM
Last Post: deanhystad
  Re Try loop for "net use..." failures tester_V 10 937 Mar-02-2024, 08:15 AM
Last Post: tester_V
  How to receive two passed cmdline parameters and access them inside a Python script? pstein 2 541 Feb-17-2024, 12:29 PM
Last Post: deanhystad
  File loop curiously skipping files - FIXED mbk34 10 1,187 Feb-10-2024, 07:08 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