编写函数judgeStr(str)输入一个字符串,判断输入的字符串中是否含有Python字段,含有输出含有字符串,要求不区分大小写。
时间: 2023-12-14 13:39:49 浏览: 60
你可以使用Python中的字符串方法lower()将输入的字符串转换为小写,并使用关键字in来检查字符串中是否包含Python字段。下面是一个示例代码:
```python
def judgeStr(str):
if 'python' in str.lower():
print('输入的字符串中包含Python字段')
else:
print('输入的字符串中不包含Python字段')
```
注意,这个函数只是简单地判断字符串中是否包含Python,如果你需要更复杂的检查逻辑,可以根据具体需求进行修改。
相关问题
请输入一个字符串,编写函数judgeStr(str)判断输入的字符串中是否含有Python字段,要求不区分大小写 Python代码
```python
def judgeStr(str):
if "python" in str.lower():
return True
else:
return False
```
使用lower()函数将字符串转换为小写,然后在小写字符串中查找是否包含"python"字符串即可。如果包含则返回True,否则返回False。
编写函数judgeStr(str)判断输入的字符串中是否含有Python字段,要求不区分大小写。 python
可以使用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"作为函数名。
阅读全文