부가가치세 계산기
이것은 내가 사용하는 코드다.
import pyperclip
vat = 1.2
def remove_vat(x, y):
return x / y
def add_vat(x , y):
return x * y
while True:
print("#### VAT Calculator ####")
num = float(input("Enter Amount: "))
print("Choose Operation:")
print("1. Remove VAT")
print("2. Add VAT")
choice = input("Enter Choice(1/2):")
result = 0
if choice =='1':
result = remove_vat(num , vat)
elif choice == '2':
result = add_vat(vat , num)
else:
print("Invalid Input")
print(round(result , 2))
pyperclip.copy(round(result , 2))
내가 이렇게 한 것은 online VAT calculator를 사용했기 때문이다. 이것은 매우 효과적이지만 나는 이 간단한 도구를 만들어서 나의 업무 절차를 가속화할 수 있다고 믿는다. 나는 인터넷 연결에 의존해서 그것을 사용하고 싶지 않다.
Reference
이 문제에 관하여(부가가치세 계산기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/jimdarker/vat-calculator-cp0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)