Advertisement
Guest User

Untitled

a guest
Apr 18th, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #Case 1
  2. x=1
  3. def func():
  4. x=5
  5. print(x)
  6.  
  7. func()
  8. 5
  9.  
  10. #Case 2
  11. x=1
  12. def func():
  13. print(x) #First print statement
  14. x=5
  15. print(x) #Second print statement
  16.  
  17. func()
  18. UnboundLocalError: local variable 'x' referenced before assignment
  19.  
  20. def func():
  21. x=5
  22. print(x)
  23.  
  24. def func():
  25. print(x) #First print statement
  26. x=5
  27. print(x) #Second print statement
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement