迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > Python >

Python 中 TypeError: string indices must be integers 错误

作者:迹忆客 最近更新:2022/12/27 浏览次数:

当我们使用非整数值访问索引处的字符串时,会出现 Python“TypeError: string indices must be integers”。 要解决错误,需要确保使用整数,例如 my_str[2] 或一切片,例如 my_str[0:3] 在访问特定索引处的字符串时。

下面是一个产生上述错误的示例

**my_str = 'hello'

# 👇️ this is also a string
my_index = '1'

# ⛔️ TypeError: string indices must be integers
result = my_str[my_index]**

Python 中 TypeError: string indices must be integers 错误

我们尝试使用字符串索引,但这是不允许的。

如果我们有一个包含在字符串中的整数,请使用 int() 函数对其进行转换。

my_str = 'hello'


my_index = '1'

# ✅ convert str to int
result = my_str[int(my_index)]

print(result)  # 👉️ 'e'

我们必须使用整数(例如 my_str[2])或切片(例如 my_str[0:2])作为字符串索引。

如果打印在方括号之间传递的值的类型,则它不会是整数。

example = '1'

print(type(example))  # 👉️ <class 'str'>

如果我们需要获取字符串的一部分,请使用冒号分隔开始和结束索引。

my_str = 'hello world'

# 👇️ from index 0 (inclusive) to 5 (exclusive)
print(my_str[0:5])  # 👉️ 'hello'

# 👇️ from index 6 (inclusive) to end
print(my_str[6:])  # 👉️ 'world'

第一个示例展示了如何从字符串中获取前 5 个字符,第二个示例展示了如何从索引 6 处的字符开始。

如果需要遍历带有索引的字符串,请使用 enumerate() 函数。

my_str = 'hello'

for idx, char in enumerate(my_str):
    print(idx, char)  # 👉️ 0 h, 1 e, 2 l, 3 l, 4 o

enumerate 函数遍历带有索引的字符串

idx 变量存储当前迭代的索引,char 变量存储相应的字符。

如果我们打算声明一个存储键值对的变量,请改用字典。

my_dict = {'name': 'Alice', 'age': 30}

print(my_dict['name'])  # 👉️ 'Alice'
print(my_dict['age'])  # 👉️ 30

如果需要遍历字典,请使用 items() 方法。

my_dict = {'name': 'Alice', 'age': 30}

for key, value in my_dict.items():
    print(key, value)  # 👉️ name Alice, age 30

dict.items 方法返回字典项((键,值)对)的新视图。

如果在使用 JSON 字符串时出现错误,请确保在访问特定项目之前将 JSON 解析为本机 Python 对象。

import json

my_json = json.dumps(
    ['apple', 'banana', 'kiwi']
)

print(type(my_json))  # 👉️ <class 'str'>

# ✅ convert to native Python object
my_list = json.loads(my_json)

print(my_list[0])  # 👉️ 'apple'
print(my_list[1])  # 👉️ 'banana'

print(type(my_list))  # 👉️ <class 'list'>

json.loads 方法将 JSON 字符串解析为本机 Python 对象。

相反,json.dumps 方法将 Python 对象转换为 JSON 格式的字符串。

如果我们需要在遍历列表时访问索引,则可以使用 enumerate() 函数。

my_list = ['a', 'b', 'c']

for idx, elem in enumerate(my_list):
    print(idx, elem)  # 👉️ 0 a, 1 b, 2 c

当方括号之间的值的类型不是整数,也不是切片时,会出现“string indices must be integers”错误。

如果我们不确定变量存储的对象类型,请使用 type() 函数。

my_str = 'hello'

print(type(my_str))  # 👉️ <class 'str'>
print(isinstance(my_str, str))  # 👉️ True


my_dict = {'name': 'Alice', 'age': 30}

print(type(my_dict))  # 👉️ <class 'dict'>
print(isinstance(my_dict, dict))  # 👉️ True

type 类返回对象的类型。

如果传入的对象是传入类的实例或子类,则 isinstance 函数返回 True

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

Python for 循环中的下一项

发布时间:2023/04/26 浏览次数:179 分类:Python

本文讨论了 Python 中的 for 循环以及如何通过使用 for 循环和示例来跳过列表的第一个元素。

Python While 循环用户输入

发布时间:2023/04/26 浏览次数:148 分类:Python

我们可以在 while 循环中使用 input() 函数来输入数据,直到在 Python 中满足某个条件。

Python 中的整数规划

发布时间:2023/04/26 浏览次数:193 分类:Python

本文介绍了整数规划和可用于解决混合整数规划问题的 Python 工具。

在 Python 中将整数转换为罗马数字

发布时间:2023/04/26 浏览次数:87 分类:Python

本篇文章将介绍在 Python 中将整数转换为罗马数字。以下是一个 Python 程序的实现,它将给定的整数转换为其等效的罗马数字。

在 Python 中将罗马数字转换为整数

发布时间:2023/04/26 浏览次数:144 分类:Python

本文讨论如何在 Python 中将罗马数字转换为整数。 我们将使用 Python if 语句来执行此操作。 我们还将探讨在 Python 中将罗马数字更改为整数的更多方法。

在 Python 中读取 gzip 文件

发布时间:2023/04/26 浏览次数:70 分类:Python

本篇文章强调了压缩文件的重要性,并演示了如何在 Python 中使用 gzip 进行压缩和解压缩。

在 Python 中锁定文件

发布时间:2023/04/26 浏览次数:141 分类:Python

本文解释了为什么在 Python 中锁定文件很重要。 这讨论了当两个进程在没有锁的情况下与共享资源交互时会发生什么的示例,为什么在放置锁之前知道文件状态很重要,等等

在 Python 中将 PDF 转换为文本

发布时间:2023/04/26 浏览次数:196 分类:Python

在本教程中,我们将学习如何使用 Python 使用 PyPDF2、Aspose 和 PDFminer 将 PDF 文档转换为文本文件。

在 Python 中创建临时文件

发布时间:2023/04/26 浏览次数:53 分类:Python

本文讲解了tempfile库函数的四个子函数:TemporaryFile、NamedTemporaryFile、mkstemp、TemporaryDirectory。 每个部分都提供了适当的程序,以简化对概念的理解。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便