From e83bc837ee9c874672eb6ebfba7f1ea0239757cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BD=A9=E8=BE=95=E9=BE=99=E5=84=BF?= Date: Tue, 25 Oct 2022 13:14:10 +0800 Subject: [PATCH] =?UTF-8?q?NP2=20=E5=A4=9A=E8=A1=8C=E8=BE=93=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NP/NP2.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 NP/NP2.py diff --git a/NP/NP2.py b/NP/NP2.py new file mode 100644 index 0000000..eeed634 --- /dev/null +++ b/NP/NP2.py @@ -0,0 +1,9 @@ +#!/usr/bin/env python3 +# @author 轩辕龙儿 +# @date 2022/10/25 +# @file NP2.py + +s1 = "Hello World!" +s2 = "Hello Nowcoder!" +print(s1) +print(s2)