filmov
tv
Right Angle Triangle Pattern Using Python | Pattern Program - 1

Показать описание
In this video we have printed right angle triangle in 4 steps.
In further videos we will discuss on more complicated patterns.
Code:
for i in range(1, 8):
for j in range(i):
print('*', end=' ')
print('\n')
In further videos we will discuss on more complicated patterns.
Code:
for i in range(1, 8):
for j in range(i):
print('*', end=' ')
print('\n')