From bde4b7fbf5590fe8d707366f761a82cb8dadec91 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:46:12 +0800 Subject: [PATCH] =?UTF-8?q?NP21=20=E5=A2=9E=E5=8A=A0=E6=B4=BE=E5=AF=B9?= =?UTF-8?q?=E5=90=8D=E5=8D=95=EF=BC=88=E4=BA=8C=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NP/NP21.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 NP/NP21.py diff --git a/NP/NP21.py b/NP/NP21.py new file mode 100644 index 0000000..c75c01d --- /dev/null +++ b/NP/NP21.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python3 +# @author 轩辕龙儿 +# @date 2022/10/26 +# @file NP21.py + +def solution(): + nameList = input().split() + nameList.insert(0, "Allen") + print(nameList) + + +if __name__ == "__main__": + solution()