Advertisement
Guest User

Untitled

a guest
Jul 15th, 2018
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. def funkcjaA(moj_plik):
  2.     moje_parametry = podFunkcja(moj_plik)
  3.     ....
  4.     return wynik
  5.  
  6. x = funkcjaA(moj_plik)
  7.  
  8. ####  czy:
  9.  
  10. def funkcjaA(moje_parametry):
  11.     ....
  12.     return wynik
  13.  
  14. param = podFunkcja(moj_plik)
  15. x = funkcjaA(param)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement