标签: python
#!/usr/bin/python import os for x in os.listdir("/home/"): print x
错误:文件“./p1”,第4行 打印x ^ IndentationError:预期缩进块 Python 2.7.12
错误:文件“./p1”,第4行 打印x ^ IndentationError:预期缩进块
Python 2.7.12
答案 0 :(得分:2)
您需要正确缩进代码:
import os for x in os.listdir("/home/"): print x