编写函数judgeStr(str)判断输入的字符串中是否含有Python字段,要求不区分大小写。 python
时间: 2023-12-14 13:39:29 浏览: 70
数据类型操作与方法
可以使用Python内置的字符串方法lower()将输入字符串全部转换为小写字母,然后再使用find()方法查找是否包含"python"子串即可。以下是示例代码:
```python
def judgeStr(str):
if str.lower().find("python") != -1:
return True
else:
return False
```
使用示例:
```python
>>> s1 = "I love Python programming language."
>>> judgeStr(s1)
True
>>> s2 = "Java is my favorite programming language."
>>> judgeStr(s2)
False
```
注意,函数名不能使用Python的关键字"python"。此处为了方便使用了"judgeStr"作为函数名。
阅读全文