gpt4 book ai didi

海浪 : Howto simplest for loop in hy?

转载 作者:行者123 更新时间:2023-12-05 02:48:28 25 4
gpt4 key购买 nike

我想得到 Hy!

在 Hylang 中,我如何执行简单的 Python 循环:

for i in range(5):
print(i)

最佳答案

tutorial提供了这个例子:

(for [x [1 2 3]]
(print x)) ; => 1 2 3

更改变量名称,并使用 range 代替列表,我们得到:

(for [i (range 5)]
(print i))

关于海浪 : Howto simplest for loop in hy?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64471466/

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