diff --git a/Sort numeric strings in a list in Python by Naive Methodby b/Sort numeric strings in a list in Python by Naive Methodby new file mode 100644 index 0000000..1496c3f --- /dev/null +++ b/Sort numeric strings in a list in Python by Naive Methodby @@ -0,0 +1,6 @@ +Naive Method + numeric string sorting +for i in range(0, len(test_list)) : + test_list[i] = int(test_list[i]) +test_list.sort() +print ("The resultant sorted list : " + str(test_list))