for循环数字相加最后view标红
时间: 2023-07-21 22:59:39 浏览: 92
您可以使用以下代码来实现这个功能:
```python
numbers = [1, 2, 3, 4, 5]
total = 0
for number in numbers:
total += number
print(f"<span style='color:red'>{total}</span>")
```
这段代码首先定义了一个列表`numbers`,其中包含要相加的数字。然后,我们使用一个`for`循环来遍历列表中的每个数字,并将其加到`total`变量中。最后,我们使用`print`语句来将`total`的值输出到控制台,并将它用红色标记。请注意,我们使用了HTML标签`<span>`和内联样式`style='color:red'`来实现红色文本的效果。
阅读全文