1. def func(takeA):
  2. print "In a"
  3. takeA = 10
  4.  
  5. a = 5
  6.  
  7. print a
  8.  
  9. func(a)
  10.  
  11. print a
  12.  
  13.