replace space in prints python code example
Example 1: python print without space
print("a",8,sep = '')
#Output: a8
Example 2: python how to get rid of spaces in print
print('\n{} you will be {} in ten years.'.format(name, ageinten))
print("a",8,sep = '')
#Output: a8
print('\n{} you will be {} in ten years.'.format(name, ageinten))