"精加工" Python中的for循环

时间:2014-04-09 00:51:14

标签: python

我是Bash面向对象的新手。我有一个非常简单的问题,我在谷歌或Stack Overflow上没有语法表达。

如何指示for循环的结束?我见过的例子没有“完成”(从我在Bash中习惯)。在输出最后一个字符之前,我将如何运行此代码?如何在没有将程序包含在for循环中的情况下添加更多代码?

for i in ['a', 'b', 'c', 'd']:
    print i

1 个答案:

答案 0 :(得分:7)

只是不要缩进你想要在循环之外的代码。 Python是对空白敏感的。

for i in ['a', 'b', 'c', 'd']:
    print i

# The code at this indentation is not part of the above block.
print 42