사람이 쉽게 알아볼 수 있게 형식이 정해져 있지 않은 고차원 언어로 작동 원리 또는 알고리즘을 기술한 것.
의사코드(수도코드)
판매세가 포함된 물건 값 계산하기
1. get price of item \\ 물건 값 투입하기
2. get sales tax rate \\ 세금 할인율 투입하기
3. sales tax = price of item times sales tax rate \\ 판매세 = 물건 값 * 세금율
4. final price = price of item plus sales tax \\ 총합 = 총합 + 판매세
5. display final price \\ 총합 표시하기
6. halt \\\\ 종료
위 수도코드에 따라 작성한 코드
def compute_salestax():
# get price of item
price = float(raw_input("What is the item's price?")
# get sales tax rate
tax_rate = float(raw_input(\"Enter the sales tax rate, in decimal: ")
# sales tax = price of item times sales tax rate
tax = price * tax_rate
# final price = price of item plus sales tax
final_price = price + tax
# display final price
print("The final price is:", final_price)
# halt return
reference
https://medium.com/djangogirlsseoul-codecamp/의사코드-pseudo-code-란-d892a3479b1d