请输入字符串:,并用函数judgeStr(str)判断输入的字符串中是否含有Python字段,要求不区分大小写。 python代码
时间: 2024-01-21 22:16:00 浏览: 87
```python
def judgeStr(str):
if "python" in str.lower():
return True
else:
return False
input_str = input("请输入字符串:")
if judgeStr(input_str):
print("输入的字符串中包含Python字段")
else:
print("输入的字符串中不包含Python字段")
```
相关问题
请输入一个字符串:,并用函数judgeStr(str)编译Python六个字符,判断输入的字符串中是否含有Python字段,要求不区分大小写 Python代码
```python
def judgeStr(str):
if 'python' in str.lower():
return True
else:
return False
s = input("请输入一个字符串:")
if judgeStr(s):
print("输入的字符串中含有Python字段")
else:
print("输入的字符串中不含有Python字段")
```
请输入一个字符串,编写函数judgeStr(str)判断输入的字符串中是否含有Python字段,要求不区分大小写 Python代码
```python
def judgeStr(str):
if "python" in str.lower():
return True
else:
return False
```
使用lower()函数将字符串转换为小写,然后在小写字符串中查找是否包含"python"字符串即可。如果包含则返回True,否则返回False。
阅读全文