반응형
def water_average_price(old_price, old_quantity, new_price, new_quantity):
# 평균 매입가 계산
total_price = (old_price * old_quantity) + (new_price * new_quantity)
total_quantity = old_quantity + new_quantity
average_price = total_price / total_quantity
return average_price
# 예시 입력
old_price = 50000 # 기존 매입 가격
old_quantity = 10 # 기존 주식 수
new_price = 45000 # 추가 매수 가격
new_quantity = 5 # 추가 매수 주식 수
average_price = water_average_price(old_price, old_quantity, new_price, new_quantity)
print(f"평균 매입가는 {average_price:.2f}원 입니다.")
반응형
':::: 개발 :::: > :::: PYTHON(파이썬) ::::' 카테고리의 다른 글
npm : 이 시스템에서 스크립트를 실행할 수 없으므로 오류 해결.. (1) | 2024.05.15 |
---|---|
파이썬 셀레니움 할때 크롬 드라이버 자동 검색 (0) | 2023.03.15 |
영화 api 서비스 를 chatGpt 에게 물어봄 (0) | 2023.02.17 |
fastApi 개발 흐름 정리 (0) | 2022.12.21 |
fastapi vs django 둘 중 누가 편햐? (0) | 2022.12.21 |
python 가상환경 venv 이해 (0) | 2022.12.07 |
django 어드민 애러.. 정리 (0) | 2022.12.05 |
파이썬 사이트 상태 (0) | 2022.08.26 |