fork download
  1. import os
  2. print("What's in here?")
  3. for dirname, dirnames, filenames in os.walk('.'):
  4. for subdirname in dirnames:
  5. print os.path.join(dirname, subdirname)
  6. for filename in filenames:
  7. print os.path.join(dirname, filename)
Success #stdin #stdout 0.01s 7852KB
stdin
Standard input is empty
stdout
What's in here?
./prog