Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.4k views
in Technique[技术] by (71.8m points)

python - Reading the contents of a file whose name is stored in a variable

The following code first creates a list of all the files in a folder called films, then attempts to access the contents of a specific file. I know how to do this if the file's name is a literal, but can someone please explain how this can be done if the name of the file or the directory is a variable?

path = 'films'

from os import walk

f = []
for (filenames) in walk(path):
    f.extend(filenames) 
    break

listoffiles = f[2]
print("listoffiles: ",listoffiles)  
 
read = open('films/{listoffiles[0]}',"r")
print("read: ",str(read.read()))

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

just change it to be

read = open(f'films/{listoffiles[0]}',"r")

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.5k users

...