为什么for循环内部的语法无效?
为什么for循环内部的语法无效?
这个问题已经有了答案::
我用以下代码尝试并获得错误:
def preprocess(s): return (word: True for word in s.lower().split()) s1 = 'This is a book' text = preprocess(s1)
然后这里出现错误:
return (word: True for word in s.lower().split())
是无效的语法,我找不到错误来自哪里。
我想将序列放入此列表模型中:
["This": True, "is" : True, "a" :True, "book": True]
admin 更改状态以发布 2023年5月21日