Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.53 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.     try:
  8.         a = input("Podaj pierwszą liczbę")
  9.     except ValueError:
  10.         print('zjebałeś spock')
  11.         # tutaj musisz pokombinować, co zrobić, żeby ponownie spytać o pierwszą liczbę
  12.    
  13.     try:
  14.         b = input("Podaj drugą liczbę")
  15.     except ValueError:
  16.         print('znowu zjebałeś')
  17.         # tutaj musisz pokombinować, co zrobić, żeby ponownie spytać o drugą liczbę
  18.  
  19.     wynik = float(a)+float(b)
  20.     print(wynik)
  21.  
  22. dodawanie()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement