范围功能不是迭代整个列表,请帮助我

发布于 2025-01-24 00:45:21 字数 242 浏览 0 评论 0原文

def count4(lst):
    count = 0
    for i in range(lst[0],lst[-1]+1):
        print(i)
      

print(count4([1,2,3,4,5,6,4,5,4,4]))

在这里,输出仅显示“ 1234”,而不是整个列表请告诉我如何使用范围函数迭代此列表。

def count4(lst):
    count = 0
    for i in range(lst[0],lst[-1]+1):
        print(i)
      

print(count4([1,2,3,4,5,6,4,5,4,4]))

Here the output is showing just "1234" and not the whole list pls tell me how to iterate this list using range function.

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

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

发布评论

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

评论(2

不…忘初心 2025-01-31 00:45:22

您作为“ 1234”输出的原因

将以下语句

for i in range(last[0], last[-1]+1):

解释为

for i in range(1, 4 + 1):

for i in range(1,5):

解决:使用此信息

 for i in lst:

The reason you are getting output as "1234"

The below statement

for i in range(last[0], last[-1]+1):

is interpreted as

for i in range(1, 4 + 1):

i.e

for i in range(1,5):

Solution: Use this

 for i in lst:
百合的盛世恋 2025-01-31 00:45:22

您正在尝试迭代通过逻辑上不正确的开始和结束位置的列表中存储的值范围。
其他建议的方法也正确

def count4(lst):
    for i in range(len(lst)):
        print(lst[i])
      
print(count4([1,2,3,4,5,6,4,5,4,4]))

You were trying to iterate in the range of values stored in the list at starting and end position that was passed, which is logically incorrect.
The other suggested methods are also correct since you specifically said to use the range function so think this might be the answer you were looking for

def count4(lst):
    for i in range(len(lst)):
        print(lst[i])
      
print(count4([1,2,3,4,5,6,4,5,4,4]))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文