demo_string_placeholder4.py:
#To demonstrate, we insert the number 8 to specify the available space for the value. #Use "=" to place the plus/minus sign at the left most position: txt = "The temperature is {:=8} degrees celsius." print(txt.format(-5))
C:\Users\My Name>python demo_string_placeholder4.py
The temperature is - 5 degrees.