Python Program to Check if a Character is in a String or not

def find_ch(s, c):
index=0
while(index<len(s)):
if s[index]==c:
print(c, "Found in String at index:",index)
return
else:
pass
index+=1
print(c, "is not present in the string")
str=input("Enter a string:")
ch=input("Enter the character to be searched:")
find_ch(str, ch)

Output:
Enter a string: Welcome to Webeduclick
Enter the character to be searched: b
b Found in String at index: 13