Changes between Version 99 and Version 100 of ControlSystems/SoftwareTeam/IntroToPython


Ignore:
Timestamp:
Sep 4, 2017, 11:20:10 PM (8 years ago)
Author:
cdelgigante
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ControlSystems/SoftwareTeam/IntroToPython

    v99 v100  
    308308[[br]]
    309309Feeling like you got this?  Awesome, then:  '''Create a program that prints random fortune cookie sayings.'''
    310 Here's what you need to do.
    311 Randomly build the sayings from at least three different lists of nouns and verb phrases (Hint use the [[https://docs.python.org/3/library/random.html#|python random]] functions, its available in the online editor).  Make the random sayings sound suitably cryptic and wise.</li>
    312 [[br]]
    313 The program should prompt the user for the number of sayings they want output, validate that it is indeed a number, and print out that many</li>
    314 [[br]]
    315 Use functions and control structures to make the code manageable. Its best if you work in pairs for this exercise.</li>
    316 [[br]]
    317 If you need help, refer to this lesson, the [[https://docs.python.org/3/index.html | Official Python 3 Documentation]], and don't hesitate to ask the mentors.</li>
    318 [[br]]
     310Here's what you need to do:
     311[[br]]
     312Randomly build the sayings from at least three different lists of nouns and verb phrases (Hint use the [[https://docs.python.org/3/library/random.html#|python random]] functions, its available in the online editor). 
     313[[br]]
     314Make the random sayings sound suitably cryptic and wise.
     315[[br]]
     316The program should prompt the user for the number of sayings they want output, validate that it is indeed a number, and print out that many.
     317[[br]]
     318Use functions and control structures to make the code manageable. Its best if you work in pairs for this exercise.
     319[[br]]
     320If you need help, refer to this lesson, the [[https://docs.python.org/3/index.html | Official Python 3 Documentation]], and don't hesitate to ask the mentors.
     321[[br]]
     322(We'll only show you the answer to this one once you show us your solution.  Its a final exam after all...)
    319323[[br]]
    320324[[br]]