0
For loop Q
How to print numbers in sequence 12345 Not like this 1 2 3 4 5
2 Answers
+ 5
Farhan Ali
for n in range(1,6):
print(n,end='')
+ 2
you must mention a programming language.
How to print numbers in sequence 12345 Not like this 1 2 3 4 5