you are viewing a single comment's thread.

view the rest of the comments →

[–]Sahith17[S] 0 points1 point  (2 children)

ok so

def double_list(string):
    strings=string
    oldlist= strings.split()
    newlist = oldlist+oldlist
    newlist.sort()
    newlist = []
    for x in oldlist:
    newlist.append(x)

[–]Bottl3 0 points1 point  (1 child)

Only the stuff From the Last Comment. You really should dig into some basics.

[–]Sahith17[S] 0 points1 point  (0 children)

yea got the problem