# Display every letter of the alphabet on its own line (by using the string (which is a sequence container type) in a for loop)

alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"

for letter in alphabet:
    print(letter, "...")