From 9fef5047ad7ea5e86151c8a00e02a9f01c7c75e1 Mon Sep 17 00:00:00 2001 From: Wende Tan Date: Mon, 18 Mar 2024 03:32:49 +0800 Subject: [PATCH] py is py3 --- jd4/integration_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jd4/integration_test.py b/jd4/integration_test.py index d7fc661..60c6d27 100644 --- a/jd4/integration_test.py +++ b/jd4/integration_test.py @@ -80,7 +80,7 @@ def test_php(self): """) def test_py(self): - self.do_lang('py', b'print sum(map(int, raw_input().split()))') + self.do_lang('py', b'print(sum(map(int, input().split())))') def test_py3(self): self.do_lang('py3', b'print(sum(map(int, input().split())))')