Write a program to remove the whitespace from the string then find the length of a string and print the length in python code example
Example: python string remove whitespace
' sss d ssd s'.replace(" ", "")
# output: 'sssdssds'
' sss d ssd s'.replace(" ", "")
# output: 'sssdssds'