From 4b9a061b7f2de2f562be72d3d08c341cd03795b6 Mon Sep 17 00:00:00 2001
From: BellCodeEditor <bellcode_dev@bell.ai>
Date: Thu, 15 Jul 2021 17:52:02 +0800
Subject: [PATCH] auto save

---
 diy2.py | 5 +++++
 1 file changed, 5 insertions(+)
 create mode 100644 diy2.py

diff --git a/diy2.py b/diy2.py
new file mode 100644
index 0000000..accd8fd
--- /dev/null
+++ b/diy2.py
@@ -0,0 +1,5 @@
+i = 1   # 行
+j = 1   # 列
+# 使用变量i和j,代替乘法算式里面的元素,打印出单个乘法算式
+for j in range(1,10):
+print(j,"X",i,"=",j*i,end="  ")
\ No newline at end of file
--
libgit2 0.25.0