Ejemplo n.º 1
0
            "10": "count",
            "11": "reverse",
            "12": "extend",
            "13": "copy",
            "14": "clear",
            "15": "del",
            "16": "RemoveDuplicate",
            "17": "EXIT"
        }
        while True:

            print('\n\n Available Functions in List:\n\n', List_dict)
            import List
            UserListCreation = int(
                input("Enter the Length of List to be create :\n"))
            CustumList = List.Create_list(UserListCreation)
            UserOperation_Input = input(
                "\n\nSelect any one number to perform the operation:")
            if UserOperation_Input == "1":
                print(
                    "\n\n UserGuide : Length function: Used to identify the length"
                )
                print("The length of given List:\n", List.length(CustumList))
            elif UserOperation_Input == "2":
                print(
                    "\n\n UserGuide : Min function: it will return the Minimum value in the list"
                )
                print("\n\nThe Minimum Value in the List:\n",
                      List.minimum(CustumList))
            elif UserOperation_Input == "3":
                print(