Python Forum
If loop inside of a while loop
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
If loop inside of a while loop
#5
minor quibble: your if conditional is not a loop.

while is conditional and also a loop, if is conditional but it is not a loop-- though its certainly understandable why someone would think of it as one.

while x > 5:
    print(True)
    break
does the same as:

if x > 5:
    print(True)
Reply


Messages In This Thread
If loop inside of a while loop - by Afterdarkreader - Dec-20-2017, 08:50 PM
RE: If loop inside of a while loop - by squenson - Dec-20-2017, 09:00 PM
RE: If loop inside of a while loop - by j.crater - Dec-20-2017, 09:02 PM
RE: If loop inside of a while loop - by ezdev - Dec-21-2017, 06:07 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to make a double loop to evaluate this triple integral Safinazsalem 0 400 May-06-2024, 10:12 AM
Last Post: Safinazsalem
  Matplotlib scatter plot in loop with None values ivan_sc 1 2,388 Nov-04-2021, 11:25 PM
Last Post: jefsummers
  while loop mazeemagha 2 1,895 Aug-28-2021, 03:24 PM
Last Post: naughtyCat
Question I want to vectorize a really long for loop to improve performance Miregal1 1 2,086 Jul-18-2021, 11:13 AM
Last Post: jefsummers
  change for loop into numpy functions ToffiFaye 1 2,093 Feb-06-2021, 11:38 AM
Last Post: paul18fr
  Change classic loop to TensorFlow tf.while_loop vsl_neuro 0 1,845 Dec-15-2020, 07:57 AM
Last Post: vsl_neuro
  Python PDF merging from an excel pandas for loop siraero 0 2,288 Aug-16-2020, 09:34 AM
Last Post: siraero
  KeyError: 1 on a simple loop? preliator 0 2,193 Aug-14-2020, 02:13 PM
Last Post: preliator
  while loop problem fid 2 2,346 Jun-19-2020, 07:21 PM
Last Post: fid
  Creating new lists with names depending on a changing integer in a while loop l_butler 0 1,661 May-24-2020, 04:05 PM
Last Post: l_butler

Forum Jump:

User Panel Messages

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