![]() |
help me understand where this comes from - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: help me understand where this comes from (/thread-30887.html) |
help me understand where this comes from - bthurston - Nov-11-2020 hello all, Im a noob to python and raspberry pi. Ive started playing around with some of the modules. the sensor is AM2302 im using adafuit dht library When running simple temp and humidity script I see the output temp is in C. I would like to change F. Is there a way to do that in the following line? print("Temp={0:.1f}C Humidity={1:0.1f}%".format(temperature , humidity))Im not understanding the 0:0.1f or the 1:0.1f .... is the f for float? heres the full code import Adafruit_DHT import time DHT_SENSOR = Adafruit_DHT.DHT22 DHT_PIN = 4 while True: humidity, temperature = Adafruit_DHT.read(DHT_SENSOR, DHT_PIN) if humidity is not None and temperature is not None: print("Temp={0:.1f}C Humidity={1:0.1f}%".format(temperature , humidity)) time.sleep(3); RE: help me understand where this comes from - michael1789 - Nov-11-2020 Fahrenheit (°F) = (Celsius x 1.8) + 32 RE: help me understand where this comes from - buran - Nov-11-2020 (Nov-11-2020, 06:34 PM)bthurston Wrote: Im not understanding the 0:0.1f or the 1:0.1f .... is the f for float?https://docs.python.org/3.9/library/string.html#format-specification-mini-language As to converting to Fahrenheit https://github.com/adafruit/Adafruit_CircuitPython_DHT/blob/master/examples/dht_simpletest.py but you have probably seen it already (Nov-11-2020, 06:34 PM)bthurston Wrote: Is there a way to do that in the following line?You can use f-string and directly convert C temperature in the print print(f"Temp={temperature * 9 / 5 + 32:.1f}F Humidity={humidity:0.1f}")But it would be better and more readable to convert temperature on a separate line and then print temperature_f = temperature * 9 / 5 + 32 print(f"Temp={temperature_f:.1f}F Humidity={humidity:0.1f}") RE: help me understand where this comes from - deanhystad - Nov-11-2020 The {0:.1f} is a format specifier. https://docs.python.org/3/tutorial/inputoutput.html print("Temp={0:.1f}C Humidity={1:0.1f}%".format(temperature , humidity)) ^position 0 ^position 1When this is printed the expressions (things in the curly brackets) are replaced with values in the .format(). The 0: and 1: say which value goes where. temperature goes to the 0: (right after Temp=) and humidity goes to the 1: (after Humidity=). print("Temp={0:.1f}C Humidity={1:0.1f}%".format(temperature , humidity)) conversion type^ width^ ^precisionYou are right about the "f" being float. This is a conversion type. If temperature was an integer the .1f converts it to a float before printing. The width specifier sets how much space is provided to print a value. If the length of what gets printed is less than width, extra padding is added. You can specify the padding character. it defaults to a blank space. The precision specifier sets how many digits appear right of the decimal. RE: help me understand where this comes from - bthurston - Nov-11-2020 Thanks so much, that helps me make more sense of whats going on! RE: help me understand where this comes from - bthurston - Nov-11-2020 thanks so much. that really helps me understand whats going on RE: help me understand where this comes from - perfringo - Nov-12-2020 If variable name happens to be same as needed in output (like 'humidity' in this case) one can save some keystrokes with f-string self-documenting and debugging feature (requires 3.8 <= Python): >>> humidity = 100 >>> f'{humidity=:.1f}' 'humidity=100.0' |