在 Python 中提取文件扩展名
从文件名中提取扩展名是在 Python 中处理文件时的一项常见任务。它对于确定文件类型、检查有效文件格式或根据文件扩展名执行特定操作非常有用。
使用 os.path.splitext
在 Python 中从文件名中提取扩展名的最简单、最直接的方法是使用 os.path.splitext() 函数。该函数以文件名作为参数,并返回一个包含两个字符串的元组:不带扩展名的文件名和扩展名本身。
例如:
import os filename, file_extension = os.path.splitext('/path/to/somefile.ext') print(filename) # Output: '/path/to/somefile' print(file_extension) # Output: '.ext'
使用的优点os.path.splitext:
其他方法
虽然 os.path.splitext() 是提取文件最可靠、最通用的方法除了 Python 中的扩展名之外,还有其他潜在的方法:
以上是如何在 Python 中提取文件扩展名?的详细内容。更多信息请关注PHP中文网其他相关文章!