Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
while sentence
#2
Can't say for sure. You need to wrap code in Python tags or the indentation is lost. You should also describe what the code is supposed to do. This can be difficult for others to infer if all they have is the code which is not doing what it is supposed to do.

The way your code is written the loop is going to not execute at all or execute forever. Lets say the user types 'd'.
while 'd' != 'd':
    if ans==k:
        hads=random.randint(1,hads)
    else:
        hads=random.randint(hads,99)
print (hads)
'd' != 'd' is False, so the loop does not run at all and the print(hads) statement executes immediately.

If the user enters 'k', k != 'd' is True, so the loop continues to execute forever. The print statement is never reached.

What is this code supposed to do?
supuflounder likes this post
Reply


Messages In This Thread
while sentence - by kimyyya - Mar-19-2021, 07:34 PM
RE: while sentence - by deanhystad - Mar-19-2021, 07:54 PM
RE: while sentence - by nilamo - Mar-19-2021, 09:57 PM
RE: while sentence - by Pedroski55 - Mar-20-2021, 06:00 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  List / arrays putting in sentence Kurta 3 2,593 Dec-25-2020, 11:29 AM
Last Post: Larz60+
  How to make a telegram bot respond to the specific word in a sentence? Metodolog 2 6,412 Dec-22-2020, 07:30 AM
Last Post: martabassof
  How to match partial sentence in long sentence Mekala 1 1,549 Jul-22-2020, 02:21 PM
Last Post: perfringo
  Remove a sentence if it contains a word. lokhtar 6 5,996 Feb-11-2020, 04:43 PM
Last Post: stullis
  Regex Help for clubbing similar sentence segments regstuff 3 2,178 Nov-20-2019, 06:46 AM
Last Post: perfringo
  how to get all the possible permutation and combination of a sentence in python sodmzs 1 4,202 Jun-13-2019, 07:02 AM
Last Post: perfringo
  Sentence maker help bidoofis 2 2,528 Feb-08-2019, 03:59 AM
Last Post: bidoofis
  wont print last sentence.. mitmit293 2 2,429 Jan-27-2019, 05:38 PM
Last Post: aakashjha001
  Generating all simple sentence possibilities Max_77 3 2,834 Oct-10-2018, 11:35 AM
Last Post: Max_77
  PigLatin Sentence Translator Help 2skywalkers 7 5,890 Jun-23-2018, 12:46 AM
Last Post: 2skywalkers

Forum Jump:

User Panel Messages

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