gpt4 book ai didi

Python Pathlib路径对象未转换为字符串

转载 作者:行者123 更新时间:2023-12-04 11:07:50 30 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





I'm getting "TypeError: 'list' object is not callable". How do I fix this error? [duplicate]

(2 个回答)


3年前关闭。




我正在尝试使用 Shutil 使用来自 Pathlib 的路径对象复制 pdf 文件,但是当我运行我的代码时,我收到错误“str 对象不可调用”
使用 str() 将我的路径转换回字符串时。任何关于为什么会发生这种情况的解释都会非常有帮助。谢谢!

from pathlib import Path
from wand.image import Image as wandImage
import shutil
import sys
import os

def pdf2Jpeg(pdf_path):
pdf = pdf_path
jpg = pdf[:-3] + "jpg"
img = wandImage(filename=pdf)
img.save(filename=jpg)

src0 = Path(r"G:\Well Schematics\Well Histories\Merged")
dst0 = Path(r"G:\Well Schematics\Well Histories\Out")
if not dst0.exists():
dst0.mkdir()

pdfs = []
api = ''
name = ''
pnum = ''
imgs = []

for pdf in src0.iterdir():
pdfs.append(pdf)

for pdf in pdfs:

if not dst0.exists():
dst0.mkdir()

str = str(pdf.stem)
split = str.split('_')
api = split[0]
name = split[1]
pnum = split[2]

shutil.copy(str(pdf), str(dst0))
for file in dst0.iterdir():
newpdf = file
pdf2Jpeg(str(newpdf))
newpdf.unlink()

最佳答案

问题在这里:

str = str(pdf.stem)

您正在覆盖值 str ,所以从循环的第二次迭代开始, str不再指内置 str功能。为此变量选择一个不同的名称。

关于Python Pathlib路径对象未转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44315815/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com