python判断字符串是否相同
时间: 2023-09-12 16:02:48 浏览: 148
使用python语言,比较两个字符串是否相同的实例
可以使用比较运算符"=="来判断两个字符串是否相同,例如:
```
str1 = "hello"
str2 = "hello"
if str1 == str2:
print("两个字符串相同")
else:
print("两个字符串不同")
```
输出结果为:"两个字符串相同"。
阅读全文
使用python语言,比较两个字符串是否相同的实例