Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. #!/usr/bin/python3
  2.  
  3.  
  4. def wprowadz():
  5.  
  6.     a=1
  7.     b=2
  8.  
  9.     return a, b
  10.  
  11.  
  12. def policz(*liczby):
  13.  
  14.     # tu liczΔ™ a+b
  15.  
  16.     return
  17.  
  18.  
  19. def main():
  20.     liczba1, liczba2 = pierwszaFunkcja()
  21.     drugaFunkcja(liczba1, liczba2)
  22.  
  23. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement