Support Forums

Full Version: Alphabetizer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Code:
#Credits:
#Nevets04
#Fallen
#Uber1337
#Farout
import os
List = []
z = int(raw_input("How many words in your list?: "))
os.system("clear")
for x in xrange(z): List.append(raw_input(""))
List.sort(),os.system("clear")
print "\n".join(List)
I like it, keep up the good work.