print ("The number is", (roll),'.')
The number is 5 .
I want to remove the space between '5' and '.'
I have tried a few different methods to remove the space before the period, but I am either getting errors or the same result.
print ("The number is", (roll),'.')
The number is 5 .
I want to remove the space between '5' and '.'
I have tried a few different methods to remove the space before the period, but I am either getting errors or the same result.