From 7818d0cfacae3c2d17f8fbea73737ea8174a52c7 Mon Sep 17 00:00:00 2001 From: lilei <865747915@qq.com> Date: Fri, 1 Sep 2023 04:03:49 +0000 Subject: [PATCH] add lesson2. Signed-off-by: lilei <865747915@qq.com> --- lesson2 | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 lesson2 diff --git a/lesson2 b/lesson2 new file mode 100644 index 0000000..6c4a820 --- /dev/null +++ b/lesson2 @@ -0,0 +1,4 @@ +list1 = ['a','b','c'] +list2 = ['A','B','C'] +list3 = list1 + list2 +print(list3) \ No newline at end of file -- Gitee