Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # 1
- def func_one():
- result = 'booba'
- return result
- def func_two(argument):
- strng = argument + '!'
- func_two(argument=func_one())
- # 2
- def func_one():
- result = 'booba'
- return result
- def func_two(argument):
- strng = argument + '!'
- argument = func_one()
- func_two(argument=argument)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement