我被要求对一组整数列表进行平方,并将一组整数和浮点数列表立方,然后将这些列表中的每一个修改为两个单独的空列表。
我在 jupyter 上使用 python。我仅限于我们已经学过的东西(重要的一点 - 我已经尝试使用我们还没有学过的函数,教授希望我只限于我们已经涵盖的主题)。我们已经学会了制作列表、测量列表的长度、修改我们的列表以及 for 循环(使用 rang)e 和 while 循环......非常基础的。
x = [2,4,6,8,10,12,14,16,18]
y = [10,8.25,7.5,7,6.5,7,7.5,8.25,10]
# initialize new lists below
xsquared = []
ycubed = []
# loop(s) to compute x-squared and y-cubed below
for item_X in x:
item_X **= 2
for item_Y in y:
item_Y **= 3
# Use .append() to add computed values to lists you initialized
xsquared.append(item_X)
print(xsquared)
ycubed.append(item_Y)
print(ycubed)
# Results
实际结果:
[324]
[1000]
预期成绩:
[4, 16, 36, 64, 100.... 324]
[1000, 561.515625, 421.875.... 1000]
largeQ
郎朗坤
慕码人2483693
相关分类