Posts by Hernani • 17 points
1 post
-
-1
votes2
answers3029
viewsQ: Python: print(...{}' .format) or print(...+str(...))
code version 1 tempF = input('Temperature in degrees Farenheit: ') tempC = (5 * (int(tempF) - 32) / 9) print('Temperature in degrees Celsius: ' + str(tempC)) In the above code (#1), to display the…