can anyone advise me

looping kadeko at gmail.com
Thu Apr 27 06:27:14 EDT 2006


try something like this:

x = 0
while x < 10:
        z = 0
        print '-' + str(x) + '-'
        x = x + 1
        while z < x:
                print '.' + str(z) + '.',
                z = z + 1




More information about the Python-list mailing list