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? 

Answer :

rsmith6559
correct = ""
while( correct != "Patriots" ):
   correct = input( "What's the best football team? " ) # Python3
# correct = raw_input( "What's the best football team? " ) # Python2
johnyayala
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

Other Questions