728x90
더보기
playing = True
while playing:
a = int(input("Choose a number:\n"))
b = int(input("Choose another one:\n"))
operation = input(...)
if operation == "+":
.
.
.
elif operation == "/":
if b == 0:
print("No division by zero")
else:
print(f"Result: {a / b}")
.
.
.
[배운 점]
- 드디어 0으로 나눌 때 다른 말을 꺼낼 줄 알게 됨 😌 😌 ㅋㅋ
728x90
'Study > Python' 카테고리의 다른 글
[Python] flask와 웹 스크래퍼와 사이트 제작 (8) | 2024.11.12 |
---|---|
[Python] BeautifulSoup와 딕셔너리(Dictionary) 배우기 (9) | 2024.11.12 |
[Python] requests와 리스트(List) 배우기 (4) | 2024.11.12 |
[Python] 세금 계산기 만들기 (4) | 2024.11.12 |
[Python] 계산기 만들기 with. replit (2) | 2024.10.22 |