列表索引中的 for 循环

发布于 2025-01-11 21:20:27 字数 170 浏览 0 评论 0原文

我有一个简单但困难的问题,我熟悉 python 中的 for 循环,但当我尝试循环列表索引中的范围时,它给了我一个错误。

for x in range(0,9):
    fakelist[f'{x}'].split('\n\n')

这段代码给了我一个类型错误。

I have a simple yet difficult question for me, I am familiar with for loops in python but as I am trying to loop through a range in the list index it gives me an error.

for x in range(0,9):
    fakelist[f'{x}'].split('\n\n')

This code gives me a TypeError.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

迷鸟归林 2025-01-18 21:20:27

假设 fakelistPython 列表数据类型

您的代码尝试将 string 数据类型变量作为索引传递到列表中 - fakelist 因此出现错误。

for x in range(0,9):
    print(type(f'{x}'))
    fakelist[f'{x}'].split('\n\n')    

如果运行上面的代码,您可以看到您尝试传递的 indexstring 类型

尝试使用以下代码。

for x in range(0,9):
    fakelist[x].split('\n\n')

Assuming fakelist is a Python List datatype

Your code is trying to pass a string datatype variable as index to the into the list - fakelist Hence the error.

for x in range(0,9):
    print(type(f'{x}'))
    fakelist[f'{x}'].split('\n\n')    

If you run the above code you can see that the index what you are trying to pass is a string type

Try to use the following instead.

for x in range(0,9):
    fakelist[x].split('\n\n')
给我一枪 2025-01-18 21:20:27

如果你使用这样的东西会怎么样:fakelist[x].split('\n\n')

What if you use something like this: fakelist[x].split('\n\n')

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文