if not os.path.exists('data/mydata/labels/'%(year)): TypeError: not all arguments converted during string formatting
时间: 2024-05-02 12:17:37 浏览: 92
FileExistsError: [Errno 17] File exists: ‘/data1/XXX/val_processed/ct/’
5星 · 资源好评率100%
这个错误是由于你的字符串格式化代码有错误。可以尝试使用以下代码进行格式化:
```python
if not os.path.exists('data/mydata/labels/{}'.format(year)):
```
或者使用 f-string 进行格式化:
```python
if not os.path.exists(f'data/mydata/labels/{year}'):
```
这样就可以避免将字符串格式化和路径拼接导致的错误。
阅读全文