Python get rid of white spaces code example
Example 1: python delete white spaces
sentence = ' hello apple'
sentence.strip()
>>> 'hello apple'
Example 2: python how to get rid of spaces in print
print('\n{} you will be {} in ten years.'.format(name, ageinten))