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

  • Home
  • SEARCH
  • 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 1025205
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T11:53:34+00:00 2026-05-16T11:53:34+00:00

I want my program to ask a value of n. After user inputs the

  • 0

I want my program to ask a value of n. After user inputs the value,
program takes input for n values and stores them in a list or something like array (in C).
Input must be in the format:

Enter value of n: 4
2
5
7
1

I want to store this input in a list for my later use.

  • 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-16T11:53:35+00:00Added an answer on May 16, 2026 at 11:53 am

    The simplest approach is something like this:

    n = int(input())
    l = [int(input()) for _ in range(n)]
    

    However this has a number of problems:

    • It will crash on invalid inputs.
    • It evaluates the inputs which is dangerous – the user could modify your program state. (Python 2.x)
    • The user could enter floating point numbers and the program won’t complain, it will just silently truncate. (Python 2.x)

    Instead you can use raw_input and parse the result as an integer. You will also need error handling in the appropriate locations. How you handle errors depend on the program.

    You might find this function might be useful as a starting point:

    def getNumber(prompt = ''):
        while True:
            try:
                return int(raw_input(prompt))
            except:
                print "Invalid input, try again."
    

    Note that the behaviour of input and raw_input has changed between Python 2.x and Python 3.x. Python 3.x’s input function behaves like Python 2.x’s raw_input function.

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

Sidebar

Related Questions

I made a program that asks for input and returns a value. After, I
I want to ask you if there is a possibility to program a Java
I want to create a program that requests from the user 10 grades and
I have an array of float values and want the value and more importantly
I want to ask a question about the iPhone. I am writing a program
I want to use the java.util.Preferences API but I don't want my program to
I want a C program to produce a core dump under certain circumstances. This
In my C++ program I want to parse a small piece of XML, insert
From within my Java program I want to determine which .NET Framework is installed
I am running a program and want to see what its return code is

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.