python3判断字符相等
时间: 2023-07-29 14:14:38 浏览: 229
python不相等的两个字符串的 if 条件判断为True详解
5星 · 资源好评率100%
在 Python3 中,可以使用 `==` 运算符来判断两个字符是否相等。例如:
```python
a = 'hello'
b = 'world'
if a == b:
print('a equals b')
else:
print('a does not equal b')
```
输出结果为:
```
a does not equal b
```
阅读全文