filmov
tv
L 33: Python Program to Print Half Pyramid Using Alphabets | Python Full Course
![preview_player](https://i.ytimg.com/vi/iWPDb8ujnf8/maxresdefault.jpg)
Показать описание
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")
#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")