From 603773828a91589f7cf1f61158435148f4798d8b Mon Sep 17 00:00:00 2001 From: Luthics Date: Mon, 24 Oct 2022 23:45:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=AC=AC=2012=20=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- codes/12.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 codes/12.py diff --git a/codes/12.py b/codes/12.py new file mode 100644 index 0000000..ae67adc --- /dev/null +++ b/codes/12.py @@ -0,0 +1,4 @@ +for i in range(9): + for j in range(i+1): + print(str(i+1)+"*"+str(j+1)+"="+str((i+1)*(j+1)),end =" ") + print("") \ No newline at end of file