Python Program to Replace all Occurrences of ‘a’ with $ in a String code example
Example: python replace all occurrences in string
>>> 'no one knows how'.replace('no', 'yes')
'yes one kyesws how'
>>> 'no one knows how'.replace('no', 'yes')
'yes one kyesws how'