Advertisement
Ruddog

for folderName, subfolders, filenames in os.walk("C:/"):

Apr 9th, 2017
230
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. a=0
  3. while a <= 10:
  4.     a=a+1
  5.     for folderName, subfolders, filenames in os.walk("C:/"):  
  6.         print(a)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement