From 2c7468c366789e77229b66d0eb99bb0dc49077b7 Mon Sep 17 00:00:00 2001 From: BellCodeEditor <bellcode_dev@bell.ai> Date: Fri, 17 Jul 2020 10:35:33 +0800 Subject: [PATCH] save project --- diy2.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 diy2.py diff --git a/diy2.py b/diy2.py new file mode 100644 index 0000000..53676ce --- /dev/null +++ b/diy2.py @@ -0,0 +1,6 @@ +for i in range(1,10) # 行 + for j in range (1,10) + # 列 +# 使用变量i和j,代替乘法算式里面的元素,打印出单个乘法算式 + print(i,'x',j,'=',(i*j),end=" ") + print() \ No newline at end of file -- libgit2 0.25.0