From f0d2e1fd080af94774a8a5ea057c0562a3013037 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BD=A9=E8=BE=95=E9=BE=99=E5=84=BF?= Date: Wed, 26 Oct 2022 10:50:22 +0800 Subject: [PATCH] =?UTF-8?q?NP22=20=E5=88=A0=E9=99=A4=E7=AE=80=E5=8E=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NP/NP22.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 NP/NP22.py diff --git a/NP/NP22.py b/NP/NP22.py new file mode 100644 index 0000000..d7dde6c --- /dev/null +++ b/NP/NP22.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python3 +# @author 轩辕龙儿 +# @date 2022/10/26 +# @file NP22.py + +def solution(): + com = input().split() + com.remove(com[0]) + print(com) + + +if __name__ == "__main__": + solution()