Python Forum
'Looping' does not work out within a 'for Loop'
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
'Looping' does not work out within a 'for Loop'
#4
(Sep-15-2018, 05:53 PM)Placebo Wrote: Hey, thanks for the PEP styleguide-link - gonna put it on my kindle and read through it.
Regards to question 1.)
But some exact int-value does not need to be defined i.e how the program can know what the correct guessed number between 1 and 20 is?
The value does not matter, if quest is neither smaller nor bigger than the secret number - else in the snippet below actually is equivalent to elif guess == secretNumber - but since this is the only remaining option, the condition is redundant
    if guess < secretNumber:
        print('Your guess is too low.')
    elif guess > secretNumber:
        print('Your guess is too high.')
    else:
        break # this condition is the right guess!
Test everything in a Python shell (iPython, Azure Notebook, etc.)
  • Someone gave you an advice you liked? Test it - maybe the advice was actually bad.
  • Someone gave you an advice you think is bad? Test it before arguing - maybe it was good.
  • You posted a claim that something you did not test works? Be prepared to eat your hat.
Reply


Messages In This Thread
RE: 'Looping' does not work out within a 'for Loop' - by volcano63 - Sep-15-2018, 06:00 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  While Loop Does Not Work Properly mactron 4 1,068 Jun-22-2023, 01:04 AM
Last Post: mactron
  "while" loop is looping back too early mangurian 1 1,393 Jan-28-2022, 09:15 AM
Last Post: ibreeden
  For Loop Works Fine But Append For Pandas Doesn't Work knight2000 2 2,191 Dec-18-2021, 02:38 AM
Last Post: knight2000
  How can this for loop work without : ? Pedroski55 1 1,775 Dec-13-2020, 01:19 AM
Last Post: palladium
  Please help my while loop does not work as expected KingKhan248 6 2,803 Sep-28-2020, 09:12 PM
Last Post: deanhystad
  While loop keeps looping mcoliver88 3 2,422 Jul-29-2020, 12:48 PM
Last Post: buran
  Nested for loop not looping puttingwordstogether 0 1,798 Jun-16-2020, 11:15 PM
Last Post: puttingwordstogether
  while loop will not stop looping TheTechRobo 5 3,966 Apr-20-2020, 01:47 PM
Last Post: TheTechRobo
  For loop in my __init__ doesn't work as expected Jessy 2 2,489 Nov-18-2019, 10:07 AM
Last Post: buran
Question Why does modifying a list in a for loop not seem to work? umut3806 2 2,416 Jul-22-2019, 08:25 PM
Last Post: umut3806

Forum Jump:

User Panel Messages

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