Why do i get when using map





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















What i have understood so far from the map function is that it applies a given function to each item in an iterable and returns the list of the result.



def square(num):
return num**2

list_num = [1,2,3,4]


considering the above function and the list of numbers as an example.



if we: list(map(square,list_num)) we will get as an output [1,4,9,16].



now comes the part that i am not able to find a sensible explenation of, if i



print(map(square,list_num)) i will get as an output <map object at 0x038B0290>.



My question is, Why am i getting the memory location and not a list when i use the print() function or when use map(square,list_num).










share|improve this question




















  • 1





    Because map returns a map object, not a list: "Make an iterator that computes the function using arguments from each of the iterables. Stops when the shortest iterable is exhausted."

    – L3viathan
    Jan 3 at 16:04













  • Possible duplicate of Getting a map() to return a list in Python 3.x

    – jpp
    Jan 3 at 16:15











  • i understand how to get a list of results from map and how to use it... i just needed a sensible explanation why it outputted memory location when using map alone or with the print function. But Thanks :).

    – A.Rizgar
    Jan 3 at 16:18




















0















What i have understood so far from the map function is that it applies a given function to each item in an iterable and returns the list of the result.



def square(num):
return num**2

list_num = [1,2,3,4]


considering the above function and the list of numbers as an example.



if we: list(map(square,list_num)) we will get as an output [1,4,9,16].



now comes the part that i am not able to find a sensible explenation of, if i



print(map(square,list_num)) i will get as an output <map object at 0x038B0290>.



My question is, Why am i getting the memory location and not a list when i use the print() function or when use map(square,list_num).










share|improve this question




















  • 1





    Because map returns a map object, not a list: "Make an iterator that computes the function using arguments from each of the iterables. Stops when the shortest iterable is exhausted."

    – L3viathan
    Jan 3 at 16:04













  • Possible duplicate of Getting a map() to return a list in Python 3.x

    – jpp
    Jan 3 at 16:15











  • i understand how to get a list of results from map and how to use it... i just needed a sensible explanation why it outputted memory location when using map alone or with the print function. But Thanks :).

    – A.Rizgar
    Jan 3 at 16:18
















0












0








0








What i have understood so far from the map function is that it applies a given function to each item in an iterable and returns the list of the result.



def square(num):
return num**2

list_num = [1,2,3,4]


considering the above function and the list of numbers as an example.



if we: list(map(square,list_num)) we will get as an output [1,4,9,16].



now comes the part that i am not able to find a sensible explenation of, if i



print(map(square,list_num)) i will get as an output <map object at 0x038B0290>.



My question is, Why am i getting the memory location and not a list when i use the print() function or when use map(square,list_num).










share|improve this question
















What i have understood so far from the map function is that it applies a given function to each item in an iterable and returns the list of the result.



def square(num):
return num**2

list_num = [1,2,3,4]


considering the above function and the list of numbers as an example.



if we: list(map(square,list_num)) we will get as an output [1,4,9,16].



now comes the part that i am not able to find a sensible explenation of, if i



print(map(square,list_num)) i will get as an output <map object at 0x038B0290>.



My question is, Why am i getting the memory location and not a list when i use the print() function or when use map(square,list_num).







python python-3.x






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 3 at 16:50









Patrick Artner

26.6k62544




26.6k62544










asked Jan 3 at 16:03









A.RizgarA.Rizgar

307




307








  • 1





    Because map returns a map object, not a list: "Make an iterator that computes the function using arguments from each of the iterables. Stops when the shortest iterable is exhausted."

    – L3viathan
    Jan 3 at 16:04













  • Possible duplicate of Getting a map() to return a list in Python 3.x

    – jpp
    Jan 3 at 16:15











  • i understand how to get a list of results from map and how to use it... i just needed a sensible explanation why it outputted memory location when using map alone or with the print function. But Thanks :).

    – A.Rizgar
    Jan 3 at 16:18
















  • 1





    Because map returns a map object, not a list: "Make an iterator that computes the function using arguments from each of the iterables. Stops when the shortest iterable is exhausted."

    – L3viathan
    Jan 3 at 16:04













  • Possible duplicate of Getting a map() to return a list in Python 3.x

    – jpp
    Jan 3 at 16:15











  • i understand how to get a list of results from map and how to use it... i just needed a sensible explanation why it outputted memory location when using map alone or with the print function. But Thanks :).

    – A.Rizgar
    Jan 3 at 16:18










1




1





Because map returns a map object, not a list: "Make an iterator that computes the function using arguments from each of the iterables. Stops when the shortest iterable is exhausted."

– L3viathan
Jan 3 at 16:04







Because map returns a map object, not a list: "Make an iterator that computes the function using arguments from each of the iterables. Stops when the shortest iterable is exhausted."

– L3viathan
Jan 3 at 16:04















Possible duplicate of Getting a map() to return a list in Python 3.x

– jpp
Jan 3 at 16:15





Possible duplicate of Getting a map() to return a list in Python 3.x

– jpp
Jan 3 at 16:15













i understand how to get a list of results from map and how to use it... i just needed a sensible explanation why it outputted memory location when using map alone or with the print function. But Thanks :).

– A.Rizgar
Jan 3 at 16:18







i understand how to get a list of results from map and how to use it... i just needed a sensible explanation why it outputted memory location when using map alone or with the print function. But Thanks :).

– A.Rizgar
Jan 3 at 16:18














1 Answer
1






active

oldest

votes


















3














map doesn't return a list. It returns a map object that lazily produces results as needed:



print(type(map(int, [1])))
<class 'map'>


It also doesn't override the stringify method which would produce pretty-printed results. That may be because that would require forcing the entire list to be evaluated, and if that's acceptable in your program, you probably shouldn't be using map in the first place; unless you're debugging, in which case use of list is probably fine unless you're dealing with an infinite list.



If you want a full-element print out, explicitly force it by placing it in a list before printing as you saw, or use a strict list production method like a list comprehension.






share|improve this answer


























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54025846%2fwhy-do-i-get-map-object-at-0x0389dcd0-when-using-map%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    3














    map doesn't return a list. It returns a map object that lazily produces results as needed:



    print(type(map(int, [1])))
    <class 'map'>


    It also doesn't override the stringify method which would produce pretty-printed results. That may be because that would require forcing the entire list to be evaluated, and if that's acceptable in your program, you probably shouldn't be using map in the first place; unless you're debugging, in which case use of list is probably fine unless you're dealing with an infinite list.



    If you want a full-element print out, explicitly force it by placing it in a list before printing as you saw, or use a strict list production method like a list comprehension.






    share|improve this answer






























      3














      map doesn't return a list. It returns a map object that lazily produces results as needed:



      print(type(map(int, [1])))
      <class 'map'>


      It also doesn't override the stringify method which would produce pretty-printed results. That may be because that would require forcing the entire list to be evaluated, and if that's acceptable in your program, you probably shouldn't be using map in the first place; unless you're debugging, in which case use of list is probably fine unless you're dealing with an infinite list.



      If you want a full-element print out, explicitly force it by placing it in a list before printing as you saw, or use a strict list production method like a list comprehension.






      share|improve this answer




























        3












        3








        3







        map doesn't return a list. It returns a map object that lazily produces results as needed:



        print(type(map(int, [1])))
        <class 'map'>


        It also doesn't override the stringify method which would produce pretty-printed results. That may be because that would require forcing the entire list to be evaluated, and if that's acceptable in your program, you probably shouldn't be using map in the first place; unless you're debugging, in which case use of list is probably fine unless you're dealing with an infinite list.



        If you want a full-element print out, explicitly force it by placing it in a list before printing as you saw, or use a strict list production method like a list comprehension.






        share|improve this answer















        map doesn't return a list. It returns a map object that lazily produces results as needed:



        print(type(map(int, [1])))
        <class 'map'>


        It also doesn't override the stringify method which would produce pretty-printed results. That may be because that would require forcing the entire list to be evaluated, and if that's acceptable in your program, you probably shouldn't be using map in the first place; unless you're debugging, in which case use of list is probably fine unless you're dealing with an infinite list.



        If you want a full-element print out, explicitly force it by placing it in a list before printing as you saw, or use a strict list production method like a list comprehension.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Jan 3 at 16:13

























        answered Jan 3 at 16:05









        CarcigenicateCarcigenicate

        18.6k53262




        18.6k53262
































            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54025846%2fwhy-do-i-get-map-object-at-0x0389dcd0-when-using-map%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            MongoDB - Not Authorized To Execute Command

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

            How to fix TextFormField cause rebuild widget in Flutter