Advertisement
steve-shambles-2109

188-Calculate percentage

Oct 23rd, 2019
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. """
  2. Python code snippets vol 38:
  3. 188-Calculate percentage
  4. stevepython.wordpress.com
  5.  
  6. requirements: None
  7.  
  8. source:
  9. https://docs.python.org/3/library/string.html#module-string
  10. """
  11.  
  12. points = 10
  13. total = 300
  14. print('Percentage of points from total is: {:.2%}'.format(points/total))
  15.  
  16. #Output:
  17. #>>>Percentage of points from total is: 3.33%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement