bytes.py 84 B

1234567
  1. def test():
  2. a = bytes(10)
  3. a[1] = 1
  4. return a
  5. print(test())
  6. res = test()