old newbie in Python, and I came across a problem.
print('Adding the two numbers gives',user_num,', which is different from',str(number1 + number2),'.')
output:
Adding the two numbers gives 24 , which is different from 1212 .
Question: How do you remove the space between 24
and the comma, and the space between 1212
and .
?