연습 - 계산기 빌드
이 연습에서는 계산기를 빌드하는 방법을 배웁니다. 계산기는 입력을 받아서 화면에 결과를 표시합니다. 샌드박스를 활성화한 후에 페이지를 새로 고침하여 Cloud Shell 콘솔을 다시 시작합니다.
Cloud Shell 콘솔에
python
을 입력하여 REPL을 시작합니다.python
다음과 유사한 출력이 표시됩니다.
Python 3.9.14 (main, Oct 29 2022, 22:18:10) [GCC 11.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>>
다음 코드를 복사하여 REPL에 붙여넣습니다.
first_number = int(input('Type the first number: ')) ;\ second_number = int(input('Type the second number: ')) ;\ print("The sum is: ", first_number + second_number)
다음 출력이 표시됩니다.
>>> first_number = int(input('Type the first number: ')) ;\ ... second_number = int(input('Type the second number: ')) ;\ ... print("The sum is: ", first_number + second_number) Type the first number:
처음 두 문 끝에 있는
;\
문자는 코드 줄이 여러 개 있음을 알립니다. 이러한 문자를 사용하면 모든 코드를 한 줄씩 입력할 수 있습니다. 코드도 실행되며, 보시다시피 첫 번째 입력을 요청합니다.2를 입력하고 Enter 키를 눌러 첫 번째 입력을 완료합니다.
다음 출력이 표시됩니다.
Type the first number: 2 Type the second number:
이제 3을 입력하고 Enter 키를 눌러 두 번째 입력을 완료합니다.
다음 출력이 표시됩니다.
Type the second number: 3 The sum is: 5 >>>
축하합니다. 계산기 프로그램을 만들었습니다.