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;
}
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
add a comment |
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
1
Becausemap
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
add a comment |
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
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
python python-3.x
edited Jan 3 at 16:50


Patrick Artner
26.6k62544
26.6k62544
asked Jan 3 at 16:03
A.RizgarA.Rizgar
307
307
1
Becausemap
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
add a comment |
1
Becausemap
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
add a comment |
1 Answer
1
active
oldest
votes
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.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
edited Jan 3 at 16:13
answered Jan 3 at 16:05


CarcigenicateCarcigenicate
18.6k53262
18.6k53262
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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