Any idea why this program will not run on my CPU? It runs here. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Any idea why this program will not run on my CPU? It runs here.

#The term 'Booleans' sounds like a tribe of ghosts. Enter T for True or F for False. x = input() while x == "T": print("True \nBoo! \nI ain\'t afraid of no ghost!") while x == "F": print("False \nThat\'s exactly what a ghost would say.") else: print("Ghosts just don\'t understand. \nEnter T for True or F for False. \nThe program is case sensitive. \nBe careful, you Boolians ;-)") #Warning: When the program is used as instructed, it results in an infinite loop.

25th Mar 2022, 6:48 AM
Michael Keller
Michael Keller - avatar
6 Answers
+ 1
It's kinda a poem. I want it to be an infinite loop.
25th Mar 2022, 6:54 AM
Michael Keller
Michael Keller - avatar
+ 1
It should run right?
25th Mar 2022, 6:55 AM
Michael Keller
Michael Keller - avatar
+ 1
Ooo I like that
25th Mar 2022, 7:03 AM
Michael Keller
Michael Keller - avatar
0
The last comment is probably letting you know what the problem is. Solution: Hmmm.... do you know how to break an infinite loop? {edit: you could also move the input line inside the while loop, but you will have to force a value for x above the while loop. I can explain or show you if that wasn't clear}
25th Mar 2022, 6:53 AM
HungryTradie
HungryTradie - avatar
0
I'm pasting it from a word processor. Maybe that's it?
25th Mar 2022, 6:59 AM
Michael Keller
Michael Keller - avatar
0
Oh, the while statements probably should be if elif x='boo' #or whatever... while x: x=input() if x=='T': ### the print line elif x=='F': # the other print line elif x==("The keymaster!!!"): break #this will exit the loop, but punctuation and capitals must match exactly! else: #the instructions print line. #that will loop infinitely but will ask for input on each loop. Secret exit phrase is V1.1 https://code.sololearn.com/c0tHWk5M7ZwC/?ref=app
25th Mar 2022, 7:02 AM
HungryTradie
HungryTradie - avatar