반응형
[실습1] Python으로 간단한 계산기 프로그램 만들기
Python 설치와 VS code 설치까지 완료되었다면 테스트로 간단한 예제 프로그램을 실행해보겠습니다. 더하기, 뺴기, 곱하기, 나누기를 할 수 있는 코드이고 실행을 하면 어떤 연산을 할지를 정하고, 첫번쨰 숫자, 두번째 숫자를 순서대로 입력하면 계산 결과가 출력으로 나오게 됩니다.
def calculator():
operation = input("Choose operation (+, -, *, /): ")
num1 = float(input("Enter first number: "))
num2 = float(input("Enter second number: "))
if operation == '+':
print(f"Result: {num1 + num2}")
elif operation == '-':
print(f"Result: {num1 - num2}")
elif operation == '*':
print(f"Result: {num1 * num2}")
elif operation == '/':
print(f"Result: {num1 / num2}")
else:
print("Invalid operation")
calculator()
저는 '+', 그리고 1과 3을 입력했더니 Result: 4.0으로 나옵니다.
Choose operation (+,-,*,/) : +
Enter first number : 1
Enter second number : 3
Result: 4.0
반응형
'코딩연습' 카테고리의 다른 글
Python에서 break와 return 사용법 차이점 (0) | 2024.10.29 |
---|---|
Visual Studio Code에서 Terminal 창 복사 copy 하는 방법 (0) | 2024.09.22 |
[실습준비][Part2] Visual Studio Code 설치 (1) | 2024.09.18 |
[실습준비][Part1] miniconda 설치 및 환경설정 (2) | 2024.09.18 |
근태시간계산 (0) | 2024.08.28 |