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