Advertisement
Guest User

Untitled

a guest
May 4th, 2022
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. #  1
  2. def func_one():
  3.     result = 'booba'
  4.     return result
  5.  
  6. def func_two(argument):
  7.     strng = argument + '!'
  8.  
  9. func_two(argument=func_one())
  10.  
  11.  
  12. #  2
  13. def func_one():
  14.     result = 'booba'
  15.     return result
  16.  
  17. def func_two(argument):
  18.     strng = argument + '!'
  19.  
  20.  
  21. argument = func_one()
  22. func_two(argument=argument)
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement