• Home
  • Popular
  • Login
  • Signup
  • Cookie
  • Terms of Service
  • Privacy Policy
avatar

Posted by @arijit87


10 Jul, 2024

Updated at 27 Dec, 2024

How to print Floyd?s Triangle with 5 rows

def print_floyds_triangle(rows): ? ?number = 1 ? ?for i in range(1, rows + 1): ? ? ? ?for j in range(1, i + 1): ? ? ? ? ? ?print(number, end=" ") ? ? ? ? ? ?number += 1 ? ? ? ?print() # Example usage num_rows = 5 print_floyds_triangle(num_rows)

?

Output:

?

1?

1 2

1 2 3

1 2 3 4

1 2 3 4 5