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) + +