gpt4 book ai didi

python - 我在将变量放入路径时遇到一些问题

转载 作者:太空宇宙 更新时间:2023-11-04 05:37:40 25 4
gpt4 key购买 nike

可以将变量放入 python/linux 的路径中

例如:

>>>counter = 0;

>>>image = ClImage(file_obj=open('/home/user/image'counter'.jpeg', 'rb'))

这样做时出现语法错误。

最佳答案

您可以使用f-string如果您使用的是 python 3.6+

这是最有效的方法。

counter = 0
filepath = f"/home/user/image{counter}.jpeg"
image = ClImage(file_obj=open(filepath, 'rb'))

否则,第二好的方法是使用 .format()功能:

counter = 0
filepath = "/home/user/image{0}.jpeg".format(counter)
image = ClImage(file_obj=open(filepath, 'rb'))

关于python - 我在将变量放入路径时遇到一些问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53259674/

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