Expand|Select|Wrap|Line Numbers
- x=10
- while x!=10:
- print x
- x-=1
10
9
8
etc..
but it should print in one line like this..
10 then '10' will become 9 then 8 etc...
hope you understand what i am trying to ask....
print control characters in python shell
|