Guest User

Untitled

a guest
Mar 19th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. import os, glob
  2.  
  3. #prints all fies ending in .pdf
  4. os.chdir("~")
  5. for file in glob.glob("*.pdf"):
  6. print(file)
Add Comment
Please, Sign In to add comment