请输入一个字符串:,并用函数judgeStr(str)编译Python六个字符,判断输入的字符串中是否含有Python字段,要求不区分大小写 Python代码
时间: 2023-11-19 13:08:55 浏览: 58
```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!")
```
阅读全文