0%

Python给切片命名,增强可读性

使用内置的slice函数创建切片,而不是硬编码下标,从而增强代码可读性,例如:

1
2
3
4
>>> ip="<127.0.0.1>"
>>> GET_IP = slice(1,-1)
>>> ip[GET_IP]
'127.0.0.1'

参考

https://python3-cookbook.readthedocs.io/zh_CN/latest/c01/p11_naming_slice.html