From c5374b910fd92e9e2d700ba4dc6122db3ac071c9 Mon Sep 17 00:00:00 2001
From: BellCodeEditor <bellcode_dev@bell.ai>
Date: Sat, 25 Jul 2020 17:04:23 +0800
Subject: [PATCH] save project

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

diff --git a/diy2.py b/diy2.py
new file mode 100644
index 0000000..a190778
--- /dev/null
+++ b/diy2.py
@@ -0,0 +1,8 @@
+for i in range(1,10):
+# 使用变量i和j,代替乘法算式里面的元素
+    for j in range(1,i+1):
+        print(j,'*',i ,'=',i*j,end=' ')
+    print()
+
+  
+
--
libgit2 0.25.0