나는 항목 및 비용의 비용을 가져 와서 노트, 분기, 십진수,사용자가 제공 한 숫자를 정수 및 부동 소수점 형으로 캐스팅하는 방법
나는 프로그래밍에 익숙하지 않아, 나는 그것을 나눠 내려고 노력하고있다. StackOverflow를 살펴본 결과 math.modf(x)
메서드가 적합 함을 발견했습니다. 그러나, 나는 그것을 구현하는 데 어려움을 겪고있다.
change
과 y
is not defined
을 알려주세요.
감사
import math
def changereturn():
quarter = 0.25
dime = 0.1
nickel = 0.05
penny = 0.01
cost = float(raw_input('Please enter the cost of the item in USD: '))
money = float(raw_input('Please enter the amount of money given in USD: '))
change = money - cost
y = math.modf(change)
return change
return y
감사합니다. 어떻게 정수 부분을 변수에 할당하고 float 부분을 다른 변수에 할당 할 수 있습니까? 덕분에 – paulnsn
그의'print (changereturn())'을 my'change, y = changereturn()'으로 대체하십시오. –