SyntaxFix
Write A Post
Hire A Developer
Questions
def find_pos(chaine,x): for i in range(len(chaine)): if chaine[i] ==x : return 'yes',i return 'no'