You
On 4/12/07, suryo agung <suryogondol gmail.com> wrote:
> pleate tell me how to make
>
> input number=4
> result
>
> 1
> 22
> 333
> 4444
>
> in python
> please give me your answer.
input_number = 4
for i in range(1,input_number + 1):
print str(i) * i
If this is homework, please tell your teacher I helped - I
need the
extra credit.
_______________________________________________
Tutor maillist - Tutor python.org
http://
mail.python.org/mailman/listinfo/tutor
|