用python比较两个输入的字符串是否相等
时间: 2023-06-03 09:07:05 浏览: 112
使用python语言,比较两个字符串是否相同的实例
可以使用Python内置的操作符 "==" 来进行两个字符串比较。例如:
```python
string1 = "hello"
string2 = "world"
if string1 == string2:
print("The two strings are equal.")
else:
print("The two strings are not equal.")
```
以上代码中,我们首先定义了两个字符串变量 string1 和 string2,分别赋值为 "hello" 和 "world"。然后我们使用操作符 "==" 来比较这两个字符串是否相等,由于它们不相等,所以程序将输出 "The two strings are not equal."。
希望这可以回答您的问题。
阅读全文