Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. # This is a Python comment. Lines that begin with a '#' are ignored by the
  2. # Python interpreter. Comments are useful for documenting code or explaining
  3. # quiz questions!
  4. #
  5. # Write a Python program that prints out the number of minutes in seven weeks.
  6. # Remember: 7 weeks 7 days in a week, 24 hours in a day, and 60 mins in an hour.
  7. # Multiplying these numbers together will give you the result
  8. #
  9. # Click the "Test Run" button below to try running your code and see the output,
  10. # and click "Submit" to submit your answer.
  11.  
  12. print 7 * 7 * 24 * 60
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement