Guest User

Untitled

a guest
Feb 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. import os
  2.  
  3. def listdir():
  4.   for i, filename in enumerate(os.listdir('/')):
  5.     print (filename)
  6.    
  7. listdir()
Add Comment
Please, Sign In to add comment