Guest User

Untitled

a guest
Jun 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. def step_1():
  2. print("some step 1...")
  3. return 123
  4.  
  5. def step_2(some_value):
  6. print("some step 2... %s" % (some_value) )
  7. return "abc"
  8.  
  9. # main
  10. x = step_1()
  11. y = step_2(x)
  12.  
  13. $ python t.py
  14. + step_1()
  15. some step 1...
  16. + x = 123
  17. + step_2(123)
  18. some step 2... 123
  19. + y = "abc"
Add Comment
Please, Sign In to add comment