14
วิธีปัดเศษทศนิยม 2 ตำแหน่งด้วย Python อย่างไร
ฉันได้รับทศนิยมจำนวนมากในการส่งออกของรหัสนี้ (ฟาเรนไฮต์เพื่อแปลงเซลเซียส) ขณะนี้รหัสของฉันมีลักษณะเช่นนี้: def main(): printC(formeln(typeHere())) def typeHere(): global Fahrenheit try: Fahrenheit = int(raw_input("Hi! Enter Fahrenheit value, and get it in Celsius!\n")) except ValueError: print "\nYour insertion was not a digit!" print "We've put your Fahrenheit value to 50!" Fahrenheit = 50 return Fahrenheit def formeln(c): Celsius = (Fahrenheit - …