From d592cc5b0b02312301b7c9e5098c6200cb60feb4 Mon Sep 17 00:00:00 2001 From: Joe S <31870999+KenwoodFox@users.noreply.github.com> Date: Sun, 31 Jan 2021 17:51:47 -0500 Subject: [PATCH] add 4.8.1 --- 4/4.8/4.8.1/main.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 4/4.8/4.8.1/main.py diff --git a/4/4.8/4.8.1/main.py b/4/4.8/4.8.1/main.py new file mode 100644 index 0000000..c53c62a --- /dev/null +++ b/4/4.8/4.8.1/main.py @@ -0,0 +1,8 @@ +num_rows = int(input()) +num_cols = int(input()) + +for _i in range(num_rows): + print('*', end=' ') + for _i in range(num_cols - 1): + print('*', end=' ') + print() \ No newline at end of file