Answers for "Delete all small Latin letters a from the given string."

0

Delete all small Latin letters a from the given string.

s = str(input())
print(s.replace('a', ''))
Posted by: Guest on February-06-2022

Code answers related to "Delete all small Latin letters a from the given string."

Python Answers by Framework

Browse Popular Code Answers by Language