보안을 그리다, 훈이

[Baekjoon/Python3] 13420번 사칙연산 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 13420번 사칙연산

HooNeee 2020. 12. 7. 01:10

[Baekjoon/Python3] 13420번 사칙연산

 

www.acmicpc.net/problem/13420

 

13420번: 사칙연산

사칙연산은 덧셈, 뺄셈, 곱셈, 나눗셈으로 이루어져 있으며, 컴퓨터 프로그램에서 이를 표현하는 기호는 +, -, *, / 와 같다. 아래는 컴퓨터 프로그램에서 표현한 사칙 연산의 예제이다. 3 * 2 = 6 문

www.acmicpc.net

 

for i in range(int(input())):
    a, b = input().split('=')
    if eval(a) == int(b):    # eval('str') : compute <-- Vulnerable
        print('correct')
    else:
        print('wrong answer')
Comments