You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
593 B

преди 5 години
  1. #!/usr/bin/env python3
  2. #title :6-1.py
  3. #description :Opdracht 6.1 - Formatting
  4. #author :Marcel Haazen
  5. #email :marcel@haazen.xyz
  6. #date :23-09-2019 - 13:38
  7. #version :0.1
  8. #usage :python3 6-1.py
  9. #notes :
  10. #python_version :3.7.4
  11. #==============================================================================
  12. def convert(c):
  13. f = 9.0/5.0 * c + 32.0
  14. return f
  15. def table(start,stop,step):
  16. print('%-12s%-12s' % ("F", "C"))
  17. for n in range(start,stop,step):
  18. print('%-12.2f%-12.2f' % (convert(n), n))
  19. table(-30,41,10)