gpt4 book ai didi

python - 为什么在初始化期间这是python语法错误?

转载 作者:行者123 更新时间:2023-12-03 08:12:51 25 4
gpt4 key购买 nike

这段代码:

class Todo:
def addto(self, list_name="", text=""):
"""
Adds an item to the specified list.
"""
if list_name == "":
list_name = sys.argv[2]
text = ''.join(sys.argv[3:]

todo_list = TodoList(getListFilename(list_name))

产生语法错误,最后一行上的小箭头指向 todo_list
__init__TodoList方法在这里:
def __init__(self, json_location):
"""
Sets up the list.
"""
self.json_location = json_location
self.load()

我是Python的新手,所以在这里看不到我做错了什么。

最佳答案

您需要关闭此)

text = ''.join(sys.argv[3:]

关于python - 为什么在初始化期间这是python语法错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1955448/

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