From fa01e9f5e5e6bf9ee554209d474d78dbc8300de8 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 14:43:13 +0800 Subject: [PATCH] =?UTF-8?q?NP23=20=E5=88=A0=E9=99=A4=E5=A5=BD=E5=8F=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NP/NP23.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 NP/NP23.py diff --git a/NP/NP23.py b/NP/NP23.py new file mode 100644 index 0000000..fb64615 --- /dev/null +++ b/NP/NP23.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python3 +# @author 轩辕龙儿 +# @date 2022/10/26 +# @file NP23.py + +def solution(): + name = input().split() + name.remove(input()) + print(name) + + +if __name__ == "__main__": + solution()