Posts by Pinguim • 1 point
1 post
-
-2
votes1
answer40
viewsQ: Doubt about substitutions in python replace method, how to better access the lists?
fix_start Given a string s, return a string where all occurrences of the first character of s were replaced by '*', except for the first. Example: 'Babble' returns 'ba**le' Assume the string is 1 or…