206k views
4 votes
If you're writing in python and you need to do this ( Write a program using a while loop to ask someone what the best football team in the world is. Repeat the question until they say the correct team.Write out the code.), how would you do this?

User Old Pro
by
8.0k points

2 Answers

4 votes
Ryan has specific points that he wants to include in his presentation, but his presentation will look too wordy if he adds them to the slides.

What can he use so those points are visible only to him during the presentation?Slide Sorter
Notes pane
Formatting toolbar
Preview page
User Chris Pietschmann
by
7.8k points
5 votes
correct = ""
while( correct != "Patriots" ):
correct = input( "What's the best football team? " ) # Python3
# correct = raw_input( "What's the best football team? " ) # Python2
User SIGSTP
by
8.5k points

No related questions found