google.com, pub-4617457846989927, DIRECT, f08c47fec0942fa0 Learn to enjoy every minute of your life.Only I can change my life.: Write a Python Program Code to Print Floyd's Triangle

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

Biggest achievements of life

 Here are the biggest achievements of life, explained with additional examples: 1. Finding Purpose and Fulfillment Discovering one's pas...