python如何获取文件名不带扩展名
Python获取文件名不带扩展名的方法:
import os file_name = os.path.basename(__file__) print(file_name) # 输出为 test.py file_name = file_name.split('.')[0] print(file_name) # 输出为 test
云海天教程网,大量的免费python教程,欢迎在线学习!
来源:PY学习网:原文地址:https://www.py.cn/article.html