Help If u can please i got this code to work for the top half
    *
    **
    ***
    ****
    *****
    ******
    *******
    ********
    *********
    **********
def main():
    i=1
    while i <=10:
        j=1
        while j<=i:
            print  '*',
            j=j+1
        print
        i=i+1
main()

    **********
    *********      I cant get a code to work for this bottom half,  Can
anyone help me
    ********
    *******
    ******
    *****
    ****
    ***
    **
    *
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to