Friday, December 13, 2019

Write a Python Program Code to Print Floyd's Triangle

Write a Python Program Code to Print Floyd's Triangle

Answer:

# Python Program - Print Floyd Triangle

print("Enter 'x' for exit.")
ran = input("Upto how many line ? ")
if ran == 'x':
    exit();
else:
    rang = int(ran)
    k = 1
    for i in range(1, rang+1):
        for j in range(1, i+1):
            print(k, end=" ")
            k = k + 1
        print()

No comments:

Post a Comment

Featured posts

Ethiopian culture calendar language

Ethiopian culture, calendar, language  The Ethiopian language, specifically Amharic, uses a script called Ge'ez script. It consists of 3...

Popular posts