python 将列表中的字符串连接成一个长路径的方法

Wendy ·
更新时间:2024-09-21
· 950 次阅读

今天实习公司分配了一个数据处理的任务。在将列表中的字符串连接成一个长路径时,我遇到了如下问题:

import os path_list = ['first_directory', 'second_directory', 'file.txt'] print os.path.join(path_list)

发现 os.path.join 之后,依然是字符串列表。这我就纳闷了:

['first_directory', 'second_directory', 'file.txt']

细思后想明白了,os.path.join 的输入必须是一个或多个 str ,而不能是 list 。字符串列表的本质依然是list。指令把 字符串列表 理解成了一个 str ,就相当于对 单str 进行 os.path.join ,最后当然没变化啦。

于是我修改了代码:

import os path_list = ['first_directory', 'second_directory', 'file.txt'] # print os.path.join(path_list) head = '' for path in path_list: head = os.path.join(head, path) print head

终于将列表中的字符串连接成了一个完整的长路径:

first_directory/second_directory/file.txt

以上这篇python 将列表中的字符串连接成一个长路径的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持软件开发网。

您可能感兴趣的文章:Python实现string字符串连接的方法总结【8种方式】Python 字符串操作(string替换、删除、截取、复制、连接、比较、查找、包含、大小写转换、分割等)python实现字符串连接的三种方法及其效率、适用场景详解python字符串连接方法分析python连接字符串的方法小结python字符串连接的N种方式总结python字符串连接方式汇总python list 合并连接字符串的方法Python 连接字符串(join %)Python连接字符串过程详解



字符串连接 列表 连接 方法 字符串 Python 字符

需要 登录 后方可回复, 如果你还没有账号请 注册新账号