i want to get some string, range from 0000 to 9999, that’s to say, i want to print the following string:
0000
0001
0002
0003
0004
0005
0006
....
9999
i tried to use print "\n".join([str(num) for num in range(0, 9999)]), but failed, i get the following number:
0
1
2
3
4
5
6
...
9999
i want python to add the prefix 0 automatically, making the number remain 4 bit digits all the time. can anyone give a hand to me? any help appreciated.
One way to get what you want is to use string formatting:
So to do what you want, do this: