Problem
Devise a Python function called onlylowercase(). It receives a single string as its argument and returns a single string. The job of the function is to copy all the lowercase characters (i.e. 'a' to 'z' characters) in the input string into the output string, removing all other characters.