def fcn():
  x = 5
  y = x
  x = 10
  #print(y)
fcn()








def fcn2():
  L = [2,4,6]
  M = L
  M[0] = 11
  print(L)
fcn2()
