I don't understand the following phenomenon. Could someone kindly explain it? Thanks in advance.

M. K. Shen

-------------------------------------------------

count=5

def test():
  print(count)
  if count==5:
    count+=0  ### Error message if this line is active, otherwise ok.
    print(count)
  return

test()
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to