作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用下面的代码,我能够得到正确的答案,但是它重复了 两次 .
例如,我只想要 [1.2038, 1.206]
的结果,但下面的代码打印 [1.2038, 1.206, 1.2038, 1.206]
.有人知道我的代码有什么问题吗?任何帮助将不胜感激。谢谢!
spot = [1.2020, 1.2040]
forwardSwap = [0.0018, 0.0020]
forwardOutright = []
for i in range(len(spot)):
for i in range(len(forwardSwap)):
forwardOutright.append(spot[i] + forwardSwap[i])
print forwardOutright
最佳答案
您应该zip
而不是同时迭代两个列表的嵌套循环:
forwardOutright = [x+y for x, y in zip(spot, forwardSwap)]
关于Python 循环 double 印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47016504/
使用下面的代码,我能够得到正确的答案,但是它重复了 两次 . 例如,我只想要 [1.2038, 1.206] 的结果,但下面的代码打印 [1.2038, 1.206, 1.2038, 1.206] .
我正在尝试显示我从 https://www.findomestic.it/ 中抓取 的结果, 我收到一个错误 我的代码在这里: from selenium.webdriver.common.by im
假设我有以下代码: double median = med(10.0, 12.0, 3.0); //method returns middle number as double 现在,我想写一条消息说
我是一名优秀的程序员,十分优秀!