L 33: Python Program to Print Half Pyramid Using Alphabets | Python Full Course

preview_player
Показать описание
In this video, I have discussed python program to print half pyramid using alphabets
#python #halfpyramid #parnikatutorials
Social media Links:
To get the regular updates:

Playlists:

Source code:
row = int(input("Enter number of rows: "))
value = 65
for i in range(row):
for j in range(i+1):
alphabet = chr(value)
print(alphabet, end=" ")
value=value+1
print("\n")
Рекомендации по теме