Advertisement
Guest User

Kalkulator_walidacja

a guest
Jun 29th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #!/usr/bin/env python
  2. #-*- coding: utf-8 -*-
  3.  
  4. print("Będziesz Panie dodawać")
  5.  
  6. def dodawanie():
  7. a = input("Podaj pierwszą liczbę")
  8.  
  9. while True:
  10. try:
  11. a = float(a)
  12. except ValueError:
  13. print('zjebałeś spock')
  14. else: return a
  15.  
  16. b = input("Podaj drugą liczbę")
  17.  
  18. try:
  19. b = float(b)
  20. except ValueError:
  21. print('zjebałeś')
  22.  
  23.  
  24.  
  25. wynik = a + b
  26. print(wynik)
  27.  
  28. dodawanie()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement