diff --git a/3_sort.py b/3_sort.py new file mode 100644 index 0000000..d5e6f5b --- /dev/null +++ b/3_sort.py @@ -0,0 +1,4 @@ +list1=['Ron','Hermione','Harry','Proffessor','Dobby','List Items 2','The House Elf','Potter','Granger','Lockhart','Weasley'] +list2=['Potter','Fred','Greg','George','Voldemort','Sirius','Dumbledore'] +list3=sorted(list1) +print(list2+list3)