self.file_path = filedialog.askopenfilenames() print(self.file_path)为什么输出的是('D:/lane_detection/movie/img_ed.png',)我想要输出D:/lane_detection/movie/img_ed.png怎么解决
时间: 2024-03-27 21:37:54 浏览: 43
读取input:file的路径并显示本地图片的方法
输出的是一个包含一个元素的元组(tuple),你可以使用索引来获取元组中的元素,例如:
```
file_path = ('D:/lane_detection/movie/img_ed.png',)
print(file_path[0])
```
这样就可以输出 `D:/lane_detection/movie/img_ed.png` 了。如果你不希望输出元组,可以通过修改代码来实现,例如:
```
self.file_path = filedialog.askopenfilenames()[0]
print(self.file_path)
```
这样就可以直接输出文件路径了。
阅读全文