New to python and getting an error on this very simple script:
from os import listdir all_files = os.listdir("/root/raw/") for file in all_files: print file
What am I doing wrong here? Looks correct according to the docs.
You have imported listdir from os so os.listdir means nothing, whereas listdir does mean something
listdir
os
os.listdir
Either call
all_files = listdir("/root/raw/")
Or change the import to
import os
You have imported only listdir function and that is in your current namespace. So you can directly access it, like this
If you had done,
then you have imported the os module and to access listdir, you have to use os.listdir
Copyright © 2021 Jogjafile Inc.
You have imported
listdir
fromos
soos.listdir
means nothing, whereaslistdir
does mean somethingEither call
Or change the import to