import string

alphabet = string.ascii_lowercase
previous = 'a'

for char in alphabet:
    if char >= previous:
        print(previous, end=" ")
        previous = char
    else:
        print("\nSeries not abecedarian.")
        break
else:
    print(previous)
print('Hello world!')

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: