Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6659241
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:00:36+00:00 2026-05-26T02:00:36+00:00

primes = [2,3,5,7..] (prime numbers) map(lambda x:print(x),primes) It does not print anything. Why is

  • 0
primes = [2,3,5,7..] (prime numbers)
map(lambda x:print(x),primes)

It does not print anything.
Why is that?
I’ve tried

sys.stdout.write(x)

too, but doesn’t work either.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T02:00:37+00:00Added an answer on May 26, 2026 at 2:00 am

    Since lambda x: print(x) is a syntax error in Python < 3, I’m assuming Python 3. That means map returns a generator, meaning to get map to actually call the function on every element of a list, you need to iterate through the resultant generator.

    Fortunately, this can be done easily:

    list(map(lambda x:print(x),primes))
    

    Oh, and you can get rid of the lambda too, if you like:

    list(map(print,primes))
    

    But, at that point you are better off with letting print handle it:

    print(*primes, sep='\n')
    

    NOTE: I said earlier that '\n'.join would be a good idea. That is only true for a list of str’s.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to print all the prime numbers between two numbers. This is my
I am trying to write a simple sieve function to calculate prime numbers in
I have a code to get list of prime numbers: def primes_numbers num primes
I'm trying to make Erlang program that finds prime numbers with processes (ineffective, I
I need to generate large prime numbers for a cryptography project. I noticed that
I'm writing a program that finds the prime numbers up to 4294967295 ( unsigned
I have a file containing many prime numbers. I'd like to write a module
I was studying hash-based sort and I found that using prime numbers in a
I'm trying to make function primes which is a list of prime numbers, but
i want to print first 100 prime numbers. so, i created an array of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.