我的代码:
其中的content就当做字符串好了
content[len(content)/2:len(content)/2+5]
错误:
TypeError: slice indices must be integers or None or have an __index__ method
翻阅众多资料发现python对于除法时候可能转换为了浮点数,要将里面的“/”改为“//”就可以运行了
本文共 247 字,大约阅读时间需要 1 分钟。
我的代码:
其中的content就当做字符串好了
content[len(content)/2:len(content)/2+5]
错误:
TypeError: slice indices must be integers or None or have an __index__ method
翻阅众多资料发现python对于除法时候可能转换为了浮点数,要将里面的“/”改为“//”就可以运行了
转载于:https://my.oschina.net/u/2539182/blog/686949