Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

userInput = int(input("Please enter the amount of rows: ")) row = 0 while(row < userInput): row += 1 spaces = userInput - row spaces_counter = 0 while(spaces_counter < spaces): print(" ", end ='')

userInput = int(input("Please enter the amount of rows: 5 "))

row = 0
while(row < userInput):
    row += 1
    spaces = userInput - row

    spaces_counter = 0
    while(spaces_counter < spaces):
        print(" ", end ='')
        spaces_counter += 1

    num_stars = 2*row-1
    while(num_stars > 0):
        print("*", end ='')
        num_stars -= 1

    print()

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.