sts = ["one","two","three"]

print sts
sts.remove( "two")
print sts

