课程
/后端开发
/Python
/初识Python
判断x是否是字母,为什么这个语句不能运行(x>=65 and x<=90)or (x>=97 and x<=122)
2018-07-20
源自:初识Python 10-3
正在回答
不是有unicode编码吗?就跟c语言的asicc编码一样可以进行字母间的比较
python是强类型,字符和数字不能进行比较运算。
>>> "a" > 65
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: '>' not supported between instances of 'str' and 'int'
用这个函数 isinstance(x, str)
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序