Advertisement
ancestor_tunji

#find_my_letter_function def find_my_letter_function(word =

Feb 11th, 2020
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. #find_my_letter_function
  2. def find_my_letter_function(word = "string",a = "character"):
  3.     print(word.find(a))
  4. find_my_letter_function("ade","a")
  5. find_my_letter_function("toilet","a"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement