-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
  • 44,693
  • 14
  • 86
  • 111

1 Answers1

2

You need to indent your code properly:

import os
for x in os.listdir("/home/"):
    print x
Lightness Races in Orbit
  • 378,754
  • 76
  • 643
  • 1,055