ok i get letter s and j, now i neetd them to be printed together

for i in range(3):
    print '*'*5
    if i in range(0,1):
        print '*'
    if i in range(1,2):
        print ' ' * 4 + '*'

       
*****
*
*****
    *
*****
for i in range(4):
    print ' ' * 3 + '*'
    if i in range(3,4):
        print '*  *'
        print '****'

       
      *
      *
      *
*     *
** * *


How low will we go? Check out Yahoo! Messenger’s low PC-to-Phone call rates.
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to