I have a working function that takes an input as string and returns a string. However, I want my function to return an empty string (""
) if the input contains any number in whatever position in the string.
For example :
>>> function("hello")
works fine
>>> function("hello1")
should return ""