python编写程序,从用户给定字符串中查找某指定的字符。
时间: 2023-12-08 22:04:07 浏览: 140
python 实现查找字符串
好的,这个问题属于技术问题,我可以回答。在Python中,可以使用字符串的find()方法来查找指定字符。例如:
user_input = input("请输入字符串:")
target_char = input("请输入要查找的字符:")
if target_char in user_input:
index = user_input.find(target_char)
print("该字符在字符串中的位置是:", index)
else:
print("该字符不在字符串中。")
阅读全文