Alphabets Pattern in Python || Type 1 || Patterns || Python

In this we are going to see a program about Alphabets Pattern in Python - Type 1 in Python Programming Language.


# Give ASCII Value For The Alphabet For A-Z (65-90)
# And For a-z (97-122)

start_alphabet = int(input("Enter ASCII value of the starting alphabet: "))
end_alphabet = int(input("Enter ASCII value of the ending alphabet: "))
for i in range(start_alphabet, end_alphabet):
    for j in range(start_alphabet, end_alphabet):
        print(chr(i), end=" ")
    print()

# Coded By DHIRAJ SHELKE

#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post