答案:
将目录中的多个.txt文件读取到嵌套列表中,可以通过以下步骤实现:
import os
def read_files(directory):
file_list = []
for filename in os.listdir(directory):
if filename.endswith(".txt"):
file_path = os.path.join(directory, filename)
with open(file_path, "r") as file:
content = file.read()
file_list.append(content.splitlines())
return file_list
directory_path = "目录路径"
nested_list = read_files(directory_path)
这样,多个.txt文件的内容就会被读取到嵌套列表nested_list中,每个.txt文件的内容将作为一个子列表存储在nested_list中。
对于这个问题,腾讯云没有直接相关的产品或服务。但是,腾讯云提供了丰富的云计算解决方案,包括云服务器、云数据库、云存储等,可以满足各种应用场景的需求。您可以访问腾讯云官方网站(https://cloud.tencent.com/)了解更多关于腾讯云的产品和服务。
领取专属 10元无门槛券
手把手带您无忧上云