Result Size: 625 x 571
demo_string_placeholder7.py:
x
 
#Use " " (a space) to insert a space before positive numbers and a minus sign before negative numbers:
txt = "The temperature is between {: } and {: } degrees celsius."
print(txt.format(-3, 7))
C:\Users\My Name>python demo_string_placeholder7.py
The temperature is between -3 and  7 degrees celsius.