5 lines
96 B
Python
5 lines
96 B
Python
import os;
|
|
if os.listdir(raw_input("directory")):
|
|
print "not empty"
|
|
else:
|
|
print "empty"
|