Sunday, 14 August 2022

Day 66 : Floyd's Triangle in Python using for loop

 


print("Enter the Number of Rows: ", end="")

row = int(input())

num = 1

for i in range(row):

    for j in range(i+1):

        print(num, end=" ")

        num = num+1

    print()   


    #clcoding.com 


Enter the Number of Rows: 6
1 
2 3 
4 5 6 
7 8 9 10 
11 12 13 14 15 
16 17 18 19 20 21 

0 Comments:

Post a Comment

Codecademy Code Foundations

Popular Posts

Categories

Android (23) AngularJS (1) Assembly Language (2) Books (10) C (75) C# (12) C++ (81) Course (1) Data Strucures (4) Downloads (1) Engineering (13) flutter (1) FPL (17) Hadoop (1) HTML&CSS (40) IS (25) Java (89) Leet Code (4) Pandas (1) PHP (20) Projects (19) Python (401) R (69) Selenium Webdriver (2) Software (14) SQL (27)