From ea1f96fb56219e13633ea292ee8e962485ddc9ab 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:48:10 +0800 Subject: [PATCH] =?UTF-8?q?NP24=20=E6=B7=98=E6=B1=B0=E6=8E=92=E5=90=8D?= =?UTF-8?q?=E6=9C=80=E5=90=8E=E7=9A=84=E5=AD=A6=E7=94=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NP/NP24.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 NP/NP24.py diff --git a/NP/NP24.py b/NP/NP24.py new file mode 100644 index 0000000..ab76ec7 --- /dev/null +++ b/NP/NP24.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python3 +# @author 轩辕龙儿 +# @date 2022/10/26 +# @file NP24.py + +def solution(): + names = input().split() + del names[-3:] + print(names) + + +if __name__ == "__main__": + solution()