From 01f838d55c06db5fa343615fb849fd9b8a043fe6 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:43:17 +0800 Subject: [PATCH] =?UTF-8?q?NP20=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=B8=80=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NP/NP20.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 NP/NP20.py diff --git a/NP/NP20.py b/NP/NP20.py new file mode 100644 index 0000000..3ba6704 --- /dev/null +++ b/NP/NP20.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python3 +# @author 轩辕龙儿 +# @date 2022/10/26 +# @file NP20.py + +def solution(): + nameList = input().split() + nameList.append("Allen") + print(nameList) + + +if __name__ == "__main__": + solution()