Get your own Python server Result Size: 625 x 565
x
 
#Use "-" to always indicate if the number is negative (positive numbers are displayed without any sign):
txt = f"The temperature is between {-3:-} and {7:-} degrees celsius."
print(txt)
The temperature is between -3 and 7 degrees celsius.