how to get rid of blank space in python function used code example
Example 1: python remove spaces
string=' t e s t '
print(string.replace(' ',''))
Example 2: python how to get rid of spaces in print
print('\n{} you will be {} in ten years.'.format(name, ageinten))