a350101 发表于 2020-1-11 10:28:12

在学字符串时遇到一个问题,请大神帮忙看一下。(python)

>>> str2 = 440882198706293955
>>> str2[:6]
Traceback (most recent call last):
File "<pyshell#165>", line 1, in <module>
    str2[:6]
TypeError: 'int' object is not subscriptable
>>> str2[:6]
Traceback (most recent call last):
File "<pyshell#166>", line 1, in <module>
    str2[:6]
TypeError: 'int' object is not subscriptable

最后的魁拔 发表于 2020-1-11 10:34:01

建议把出错信息在百度搜索一下,你就会知道哪里错了
TypeError: 'int' object is not subscriptable

zltzlt 发表于 2020-1-11 11:20:45

需要先将 str2 转化为字符串。

str2 = str(str2)

坚强的蚂蚁 发表于 2020-1-11 11:23:06

>>> str2 = '440882198706293955'
>>> str2[:6]
'440882'
不多说,自己比较下区别

Judie 发表于 2020-1-11 11:49:10

本帖最后由 Judie 于 2020-1-10 22:50 编辑

出现TypeError: ‘int’ object is not subscriptable异常的情况与解决方法
原因:不支持索引的对象使用索引
解决方法:
使用前确认该对象是否支持索引

str2 = 440882198706293955 的类型 是个整形 不是字符串!
你可以用 str() 将 整数 转换成 字符串



/记得设置最佳答案或者继续跟帖提问哦
/希望对你有帮助
{:10_282:}
页: [1]
查看完整版本: 在学字符串时遇到一个问题,请大神帮忙看一下。(python)