wap to accept a string in lower case and replace 'e' with '*' in an entered string. display the new strings
do not spam plzz
Answers
Answered by
5
print((s := input("string: ")).replace("e", "*"))
Similar questions