From a5959c6ce21266703b6645dcf000db957bbfcb6a Mon Sep 17 00:00:00 2001 From: Adarsh Code <112389532+AdrshCode@users.noreply.github.com> Date: Sat, 1 Oct 2022 09:58:23 +0530 Subject: [PATCH] Create print 1 to 100 without numbers.py --- Python/print 1 to 100 without numbers.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Python/print 1 to 100 without numbers.py diff --git a/Python/print 1 to 100 without numbers.py b/Python/print 1 to 100 without numbers.py new file mode 100644 index 00000000..8b22152a --- /dev/null +++ b/Python/print 1 to 100 without numbers.py @@ -0,0 +1,6 @@ +# AdarshCode + +for i in range(1, ord("e")): + print(i) + +