gpt4 book ai didi

python - 如何在python函数中使用while循环?

转载 作者:太空宇宙 更新时间:2023-11-04 08:53:38 25 4
gpt4 key购买 nike

def func(k): 
print k
i=0
numbers = []
while i<k:
print "At the top i is %d" %i
numbers.append(i*i*i)
i=i+1
print "The numbers are: " , numbers




y = raw_input("Give me a number")
m=func(y)

我正在学习在 Python 中使用函数和循环。一旦我运行这段代码,它就会开始打印无限数字。我找不到它的问题。

最佳答案

函数raw_input()返回一个字符串,然后将该字符串传递给函数 func() .

func() , 在 while 的条件下循环,你正在检查一个 int 和一个字符串。

在 Python 2.x 中,任何 int总是小于任何 string ,因此循环永远持续下去。示例 -

>>> 12323123123123121 < '1'
True

您应该将输入转换为整数,然后再将其提供给函数(或直接在接受输入时)。示例 -

y = int(raw_input("Give me a number"))

此外,由于您期望函数有返回值,因此您应该返回一个值。目前,您没有从该函数返回任何内容。示例 -

while i<k:
...
i=i+1
print "The numbers are: " , numbers
return numbers

在 Python 3.x 中,这种类型的比较是不允许的,如果您尝试使用该运算符比较字符串和整数,您将得到类似 - TypeError: unorderable types: int() < str() 的错误。 .

关于python - 如何在python函数中使用while循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32598525/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com