Python列表内容错误

时间:2018-02-14 13:16:21

标签: python

#!/usr/bin/python
import os
for x in os.listdir("/home/"):
print x
  

错误:文件“./p1”,第4行       打印x           ^ IndentationError:预期缩进块

     

Python 2.7.12

1 个答案:

答案 0 :(得分:2)

您需要正确缩进代码:

import os
for x in os.listdir("/home/"):
    print x