为什么在IDLE中输入 a in

来源:4-4 序列总结

senqing

2018-08-16

为什么在IDLE中输入 a in 'abcd' 输入回车报错了呢,不是说in是序列的共有操作吗?字符串不也是序列吗

写回答

3回答

7七月

2018-08-17

你a是一个变量,你这样写a是个字符串?提示非常明确的告诉你了 left 要是一个字符串

0
1
senqing
非常感谢!
2018-08-17
共1条回复

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
>>>


0
0

7七月

2018-08-16

报什么错 能贴一下吗?

0
1
senqing
>>> a in 'abcd' Traceback (most recent call last): File "", line 1, in a in 'abcd' TypeError: 'in ' requires string as left operand, not list
2018-08-16
共1条回复

Python3.8系统入门+进阶 (程序员必备第二语言)

语法精讲/配套练习+思考题/原生爬虫实战

14446 学习 · 4438 问题

查看课程