Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Copy the name program from above to "name_input.py".  Rather than use a string defined in the program, this version should request the user's name, and then print the output for the name that is given.  Hint:  use the built-in "input" function.  Make sure that your program works for names with up to 4 sub-names.  Think about what input validation is necessary so that your program won't crash if a user gives poor input?    We will discuss input validation next week, so for now,  just explain what you think is important (in a comment at the top of your program)  Implement error handling with the "try/except" technique discussed in class.  


(2) Calculate π  Using Monte Carlo Integration (4 points)

...