From 19ef6a1fd0ad4c2e1c17cdc81a0e5b8cc9c66527 Mon Sep 17 00:00:00 2001 From: "Md. Joynal Alam" <59138477+joynalam67598@users.noreply.github.com> Date: Sat, 21 Aug 2021 20:14:00 +0600 Subject: [PATCH] Loops.py Loops in python. --- 30 Days of Code/Day 05/Loops.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 30 Days of Code/Day 05/Loops.py diff --git a/30 Days of Code/Day 05/Loops.py b/30 Days of Code/Day 05/Loops.py new file mode 100644 index 0000000..f23a01d --- /dev/null +++ b/30 Days of Code/Day 05/Loops.py @@ -0,0 +1,3 @@ +n = int(raw_input().strip()) +for i in range(1,11): + print ("{} x {} = {}".format(n, i, (n*i)))