Print Alphabet Pattern in Python

Advertisements

Prev Tutorial Next Tutorial

Print Alphabet Pattern in Python

You can write this program using for loop and while loop. Follow same concept like C programming only change syntax.

Print Alphabet Pattern in Python

for i in range(1, 6):
    for j in range(65, 65+i):
        a = chr(j)
        print a,
    print

Output

	
A
A B
A B C
A B C D
A B C D E

Print Alphabet Pattern in Paython

from string import ascii_uppercase
for i in range(1, 6):
    print(" ".join(ascii_uppercase[:i]))

Output

	
A
A B
A B C
A B C D
A B C D E

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements