为什么在IDLE中输入 a in
来源:4-4 序列总结
senqing
2018-08-16
为什么在IDLE中输入 a in 'abcd' 输入回车报错了呢,不是说in是序列的共有操作吗?字符串不也是序列吗
写回答
3回答
-
你a是一个变量,你这样写a是个字符串?提示非常明确的告诉你了 left 要是一个字符串
012018-08-17 -
senqing
提问者
2018-08-16
>>> a in 'abcd' Traceback (most recent call last): File "<pyshell#7>", line 1, in <module> a in 'abcd' TypeError: 'in <string>' requires string as left operand, not list >>>
00 -
7七月
2018-08-16
报什么错 能贴一下吗?
012018-08-16
相似问题