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