Skip to content

Instantly share code, notes, and snippets.

@flsek
flsek / Calculator.py
Last active September 4, 2025 14:39
Python으로 웹 스크래퍼 만들기: From #3.3 to #3.7
while True:
num1 = input("Choose a number: ")
if num1.lower() == "exit":
break
num1 = float(num1)
num2 = input("Choose another one: ")
if num2.lower() == "exit":
print("Calculator closed.")
break