buffer[start_index : start_index + nbytes]
path[1 + path.rfind('#') :]
在这种情况下,pep8库中出现错误
但是,在 PEP8 文档中(https://www.python.org/dev/peps/pep-0008/#other-recommendations)
是的:
> ham[1:9], ham[1:9:3], ham[:9:3], ham[1::3], ham[1:9:]
> ham[lower:upper], ham[lower:upper:], ham[lower::step] ham[lower+offset:upper+offset]
> ham[: upper_fn(x) : step_fn(x)], ham[:: step_fn(x)]
> ham[lower + offset : upper + offset]
不:
> ham[lower + offset:upper + offset] ham[1: 9], ham[1 :9], ham[1:9 :3]
> ham[lower : : upper] ham[ : upper]
我认为上面的代码很好,但我不知道问题是什么。