diff --git a/Python/MPL115A2.py b/Python/MPL115A2.py index 456abd7..8aaf58a 100755 --- a/Python/MPL115A2.py +++ b/Python/MPL115A2.py @@ -53,6 +53,6 @@ fTemp = cTemp * 1.8 + 32 # Output data to screen -print "Pressure : %.2f kPa" %pressure -print "Temperature in Celsius : %.2f C" %cTemp -print "Temperature in Fahrenheit : %.2f F" % fTemp +print("Pressure : %.2f kPa" %pressure) +print("Temperature in Celsius : %.2f C" %cTemp) +print("Temperature in Fahrenheit : %.2f F" % fTemp)