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

error: File "./p1", line 4 print x ^ IndentationError: expected an indented block

Python 2.7.12

hiro protagonist
  • 40,708
  • 13
  • 78
  • 98

1 Answers1

2

You need to indent your code properly:

import os
for x in os.listdir("/home/"):
    print x
Lightness Races in Orbit
  • 369,052
  • 73
  • 620
  • 1,021