String to Lowercase and Space Removal

  • Share this:

Code introduction


Converts all characters in a string to lowercase and removes spaces.


Technology Stack : String manipulation

Code Type : String processing

Code Difficulty : Beginner


                
                    
def astringify(string):
    return ''.join(string)