# sort_list_append.py


names = ['Melissa', 'Jennifer', 'Tabitha', 'Jane']


names.sort()


theNames = []


for z in names:

    theNames.append(z)


print(theNames)


input('')


##


'''

['Jane', 'Jennifer', 'Melissa', 'Tabitha']

'''


# Dedicated to God the Father

# All Rights Reserved Christopher Andrew Topalian Copyright 2000-2024

# https://github.com/ChristopherTopalian

# https://github.com/ChristopherAndrewTopalian