显示特定文件夹中的所有文件名
就像有一个文件夹说 XYZ ,其中包含不同格式的文件 比如说 .txt 文件、excel 文件、.py 文件等。 我想使用Python编程在输出中显示所有文件名
Like there is a folder say XYZ , whcih contain files with diffrent diffrent format
let say .txt file, excel file, .py file etc.
i want to display in the output all file name using Python programming
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看文档了解更多信息
See the documentation for more
这是一个示例,也可能有助于展示 python 的一些方便的基础知识——字典
{}
、列表[]
、小字符串技术(split),诸如
os
之类的模块等:对于您的更新问题,您可以尝试以下操作:
Here is an example that might also help show some of the handy basics of python -- dicts
{}
, lists[]
, little string techniques (split
), a module likeos
, etc.:For your update question, you might try something like: