编写函数judgeStr(str)判断输入的字符串中是否含有Python字段,要求不区分大小写。 python
时间: 2023-12-14 08:40:01 浏览: 81
python字符串替换re.sub()实例解析
可以使用字符串方法lower()将字符串转换为小写,然后使用in运算符来检查是否包含“python”子字符串。以下是一个示例实现:
```python
def judgeStr(str):
return "python" in str.lower()
```
这个函数接受一个字符串作为参数,并返回一个布尔值,指示该字符串中是否包含“python”子字符串(不区分大小写)。例如:
```python
>>> judgeStr("I love Python programming")
True
>>> judgeStr("This is a Java program")
False
>>> judgeStr("Python is a great language for data science")
True
```
阅读全文