How to ask user for new item and add this to list (Python)How to read keyboard-input?How do I check if a list is empty?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow to print without newline or space?How do I sort a dictionary by value?How to make a flat list out of list of lists?Add new keys to a dictionary?How do I get the number of elements in a list in Python?How do I concatenate two lists in Python?How do I list all files of a directory?
Why would a new[] expression ever invoke a destructor?
How do you make your own symbol when Detexify fails?
What features enable the Su-25 Frogfoot to operate with such a wide variety of fuels?
How do apertures which seem too large to physically fit work?
Pre-mixing cryogenic fuels and using only one fuel tank
Picking the different solutions to the time independent Schrodinger eqaution
Why does AES have exactly 10 rounds for a 128-bit key, 12 for 192 bits and 14 for a 256-bit key size?
How does a computer interpret real numbers?
Temporarily disable WLAN internet access for children, but allow it for adults
Store Credit Card Information in Password Manager?
Extract more than nine arguments that occur periodically in a sentence to use in macros in order to typset
Recommended PCB layout understanding - ADM2572 datasheet
What is the evidence for the "tyranny of the majority problem" in a direct democracy context?
Mixing PEX brands
Does Doodling or Improvising on the Piano Have Any Benefits?
Keeping a ball lost forever
Why is this estimator biased?
How should I respond when I lied about my education and the company finds out through background check?
Invalid date error by date command
What if a revenant (monster) gains fire resistance?
Unexpected behavior of the procedure `Area` on the object 'Polygon'
Can I say "fingers" when referring to toes?
How much character growth crosses the line into breaking the character
How can "mimic phobia" be cured or prevented?
How to ask user for new item and add this to list (Python)
How to read keyboard-input?How do I check if a list is empty?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow to print without newline or space?How do I sort a dictionary by value?How to make a flat list out of list of lists?Add new keys to a dictionary?How do I get the number of elements in a list in Python?How do I concatenate two lists in Python?How do I list all files of a directory?
I am learning python and already know how to add new items to a list by myself with append. I don't know the code to ask the user for a number and add this to the list.
Thanks in advance.
Marloes
python arrays list
add a comment |
I am learning python and already know how to add new items to a list by myself with append. I don't know the code to ask the user for a number and add this to the list.
Thanks in advance.
Marloes
python arrays list
3
What is it that you have tried so far?
– DirtyBit
Mar 7 at 6:31
1
Possible duplicate of How to read keyboard-input?
– suicidalteddy
Mar 7 at 6:34
add a comment |
I am learning python and already know how to add new items to a list by myself with append. I don't know the code to ask the user for a number and add this to the list.
Thanks in advance.
Marloes
python arrays list
I am learning python and already know how to add new items to a list by myself with append. I don't know the code to ask the user for a number and add this to the list.
Thanks in advance.
Marloes
python arrays list
python arrays list
edited Mar 7 at 7:22
Egon Allison
7161419
7161419
asked Mar 7 at 6:31
Marloes DelgijerMarloes Delgijer
12
12
3
What is it that you have tried so far?
– DirtyBit
Mar 7 at 6:31
1
Possible duplicate of How to read keyboard-input?
– suicidalteddy
Mar 7 at 6:34
add a comment |
3
What is it that you have tried so far?
– DirtyBit
Mar 7 at 6:31
1
Possible duplicate of How to read keyboard-input?
– suicidalteddy
Mar 7 at 6:34
3
3
What is it that you have tried so far?
– DirtyBit
Mar 7 at 6:31
What is it that you have tried so far?
– DirtyBit
Mar 7 at 6:31
1
1
Possible duplicate of How to read keyboard-input?
– suicidalteddy
Mar 7 at 6:34
Possible duplicate of How to read keyboard-input?
– suicidalteddy
Mar 7 at 6:34
add a comment |
5 Answers
5
active
oldest
votes
Try the below code:
x = list() # Your list
x.append(1) # Appended by you
user = int(input("Enter Number")) #User Input
x.append(user) # Appended user input
print(x)
Accept the answer if u found it useful @Marloes Delgijer so that others could benefit. Thanks!
– skaul05
Mar 7 at 17:57
add a comment |
some_List = [] # an empty list
for i in range(3): # a for-loop with 3 iteration
userInp = input("Enter a str to add to the list: ") # take the inp from user
some_List.append(userInp) # append that input to the list
print(some_List) # print the list
OUTPUT:
Enter a str to add to the list: 1
Enter a str to add to the list: a
Enter a str to add to the list: 2
['1', 'a', '2']
add a comment |
Try this one in Python3
listname = []
inputdata = input("enter anything : ")
listname.append(inputdata)
print(inputdata)
Thanks, this worked well.
– Marloes Delgijer
Mar 7 at 12:39
add a comment |
You can use the inbuilt method 'input' to ask for input from the user.
But remember one important thing, that whatever you will receive from that will be of the type str so make sure that you convert it according to your use case.
number_list = list()
number = input("Enter Number: ")
# now for your use case since you are dealing with numbers, convert the input into int
number = int(number)
number_list.append(number)
add a comment |
This should work:
your_list.append(int(input("Enter Number:")))
The append()
adds to the end of your_list
.
The input()
requests a number from the user. It will be converted to an integer.
Note: the code does not checks the user gave you an actual number.
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%2f55037417%2fhow-to-ask-user-for-new-item-and-add-this-to-list-python%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try the below code:
x = list() # Your list
x.append(1) # Appended by you
user = int(input("Enter Number")) #User Input
x.append(user) # Appended user input
print(x)
Accept the answer if u found it useful @Marloes Delgijer so that others could benefit. Thanks!
– skaul05
Mar 7 at 17:57
add a comment |
Try the below code:
x = list() # Your list
x.append(1) # Appended by you
user = int(input("Enter Number")) #User Input
x.append(user) # Appended user input
print(x)
Accept the answer if u found it useful @Marloes Delgijer so that others could benefit. Thanks!
– skaul05
Mar 7 at 17:57
add a comment |
Try the below code:
x = list() # Your list
x.append(1) # Appended by you
user = int(input("Enter Number")) #User Input
x.append(user) # Appended user input
print(x)
Try the below code:
x = list() # Your list
x.append(1) # Appended by you
user = int(input("Enter Number")) #User Input
x.append(user) # Appended user input
print(x)
answered Mar 7 at 6:33
skaul05skaul05
1,0891616
1,0891616
Accept the answer if u found it useful @Marloes Delgijer so that others could benefit. Thanks!
– skaul05
Mar 7 at 17:57
add a comment |
Accept the answer if u found it useful @Marloes Delgijer so that others could benefit. Thanks!
– skaul05
Mar 7 at 17:57
Accept the answer if u found it useful @Marloes Delgijer so that others could benefit. Thanks!
– skaul05
Mar 7 at 17:57
Accept the answer if u found it useful @Marloes Delgijer so that others could benefit. Thanks!
– skaul05
Mar 7 at 17:57
add a comment |
some_List = [] # an empty list
for i in range(3): # a for-loop with 3 iteration
userInp = input("Enter a str to add to the list: ") # take the inp from user
some_List.append(userInp) # append that input to the list
print(some_List) # print the list
OUTPUT:
Enter a str to add to the list: 1
Enter a str to add to the list: a
Enter a str to add to the list: 2
['1', 'a', '2']
add a comment |
some_List = [] # an empty list
for i in range(3): # a for-loop with 3 iteration
userInp = input("Enter a str to add to the list: ") # take the inp from user
some_List.append(userInp) # append that input to the list
print(some_List) # print the list
OUTPUT:
Enter a str to add to the list: 1
Enter a str to add to the list: a
Enter a str to add to the list: 2
['1', 'a', '2']
add a comment |
some_List = [] # an empty list
for i in range(3): # a for-loop with 3 iteration
userInp = input("Enter a str to add to the list: ") # take the inp from user
some_List.append(userInp) # append that input to the list
print(some_List) # print the list
OUTPUT:
Enter a str to add to the list: 1
Enter a str to add to the list: a
Enter a str to add to the list: 2
['1', 'a', '2']
some_List = [] # an empty list
for i in range(3): # a for-loop with 3 iteration
userInp = input("Enter a str to add to the list: ") # take the inp from user
some_List.append(userInp) # append that input to the list
print(some_List) # print the list
OUTPUT:
Enter a str to add to the list: 1
Enter a str to add to the list: a
Enter a str to add to the list: 2
['1', 'a', '2']
answered Mar 7 at 6:33
DirtyBitDirtyBit
10.1k21540
10.1k21540
add a comment |
add a comment |
Try this one in Python3
listname = []
inputdata = input("enter anything : ")
listname.append(inputdata)
print(inputdata)
Thanks, this worked well.
– Marloes Delgijer
Mar 7 at 12:39
add a comment |
Try this one in Python3
listname = []
inputdata = input("enter anything : ")
listname.append(inputdata)
print(inputdata)
Thanks, this worked well.
– Marloes Delgijer
Mar 7 at 12:39
add a comment |
Try this one in Python3
listname = []
inputdata = input("enter anything : ")
listname.append(inputdata)
print(inputdata)
Try this one in Python3
listname = []
inputdata = input("enter anything : ")
listname.append(inputdata)
print(inputdata)
answered Mar 7 at 6:36
priyank modipriyank modi
262
262
Thanks, this worked well.
– Marloes Delgijer
Mar 7 at 12:39
add a comment |
Thanks, this worked well.
– Marloes Delgijer
Mar 7 at 12:39
Thanks, this worked well.
– Marloes Delgijer
Mar 7 at 12:39
Thanks, this worked well.
– Marloes Delgijer
Mar 7 at 12:39
add a comment |
You can use the inbuilt method 'input' to ask for input from the user.
But remember one important thing, that whatever you will receive from that will be of the type str so make sure that you convert it according to your use case.
number_list = list()
number = input("Enter Number: ")
# now for your use case since you are dealing with numbers, convert the input into int
number = int(number)
number_list.append(number)
add a comment |
You can use the inbuilt method 'input' to ask for input from the user.
But remember one important thing, that whatever you will receive from that will be of the type str so make sure that you convert it according to your use case.
number_list = list()
number = input("Enter Number: ")
# now for your use case since you are dealing with numbers, convert the input into int
number = int(number)
number_list.append(number)
add a comment |
You can use the inbuilt method 'input' to ask for input from the user.
But remember one important thing, that whatever you will receive from that will be of the type str so make sure that you convert it according to your use case.
number_list = list()
number = input("Enter Number: ")
# now for your use case since you are dealing with numbers, convert the input into int
number = int(number)
number_list.append(number)
You can use the inbuilt method 'input' to ask for input from the user.
But remember one important thing, that whatever you will receive from that will be of the type str so make sure that you convert it according to your use case.
number_list = list()
number = input("Enter Number: ")
# now for your use case since you are dealing with numbers, convert the input into int
number = int(number)
number_list.append(number)
answered Mar 7 at 6:42
Abhinav AnandAbhinav Anand
996
996
add a comment |
add a comment |
This should work:
your_list.append(int(input("Enter Number:")))
The append()
adds to the end of your_list
.
The input()
requests a number from the user. It will be converted to an integer.
Note: the code does not checks the user gave you an actual number.
add a comment |
This should work:
your_list.append(int(input("Enter Number:")))
The append()
adds to the end of your_list
.
The input()
requests a number from the user. It will be converted to an integer.
Note: the code does not checks the user gave you an actual number.
add a comment |
This should work:
your_list.append(int(input("Enter Number:")))
The append()
adds to the end of your_list
.
The input()
requests a number from the user. It will be converted to an integer.
Note: the code does not checks the user gave you an actual number.
This should work:
your_list.append(int(input("Enter Number:")))
The append()
adds to the end of your_list
.
The input()
requests a number from the user. It will be converted to an integer.
Note: the code does not checks the user gave you an actual number.
edited Mar 7 at 9:38
DirtyBit
10.1k21540
10.1k21540
answered Mar 7 at 8:33
user3559221user3559221
42
42
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%2f55037417%2fhow-to-ask-user-for-new-item-and-add-this-to-list-python%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
3
What is it that you have tried so far?
– DirtyBit
Mar 7 at 6:31
1
Possible duplicate of How to read keyboard-input?
– suicidalteddy
Mar 7 at 6:34