collatz序列 python程序_Collatz序列。(Python3)

我已经开始写这本书了。

在第3章的末尾,作者建议在Python中创建一个Collatz序列作为实践练习。(实践练习建议我使用print函数和return语句)

当我在代码中使用一个print()函数时,它工作得很好,我得到了希望在屏幕上看到的所有计算值:print("This is The Collatz Sequence")

user = int(input("Enter a number: "))

def collatz(n):

print(n)

while n != 1:

if n % 2 == 0:

n = n // 2

print(n)

else:

n = n * 3 + 1

print(n)

collatz(user)

问题:

为什么当我想使用return语句时,while循环只运行一次?

例如,使用return语句将整数3传递到我的函数中,只会给出3和10的return值:print("This is The Collatz Sequence")

user = int(input("Enter a number: "))

def collatz(n):

print(n)

while n != 1:

if n % 2 == 0:

n = n // 2

return n

else:

n = n * 3 + 1

return n

result = collatz(user)

print(result)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值