我在这里编写了一些应对Codio挑战的代码,但似乎无法弄清楚如何正确编写。我对Python相当陌生,由于某种原因,这次的表循环挑战使我丧命。代码如下:
# Get N from the command line
import sys
N = int(sys.argv[1])
for i in range(1, 13):
N = N + i
print(str(N))
问题问:
我们将为您提供数字N。输出该数字从1到12的时间表。
因此,如果我们传入6,则应输出6、12、18、24…66、72
任何帮助将不胜感激。
答案 0 :(得分:1)
只需使用索引* N
// if parent and child href are equal, using either yields the same result
// if there is no parent, window.parent will be equal to window
// therefore, the conditional statement isn't necessary
let url = window.parent.location.href;
答案 1 :(得分:0)
您要将循环索引添加到数字N
中,您需要乘以它。
for i in range(1, 13):
print(N*i)
答案 2 :(得分:0)
这只是一个简单的A.P。
for i in range(1,12):
print N+(i-1)*N