enter numbers in a list and then store only first and last number...so tell where my code is going wrong because my code is storing fisrt and second last number | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

enter numbers in a list and then store only first and last number...so tell where my code is going wrong because my code is storing fisrt and second last number

code:- list1=[] a=input("how mNy numbers u want to store") i=0 while i<a: b=input() list1.insert(i,b) i=i+1 q=1 l=a-1 while q<l: list1.pop(q) q=q+1 for w in list1: print w

26th Feb 2017, 2:00 PM
mrinalini
mrinalini - avatar
15 Answers
+ 2
Why don't you do something like: array = [ 42, 0, 'test', 256, 'whatever' ] bound = ( array[0], array[-1] ) print(bound) ... instead of iterating over your list to delete all not boundaries items?
26th Feb 2017, 5:37 PM
visph
visph - avatar
+ 1
here I wrote program for you. check it out https://code.sololearn.com/cttMQ2eU6F7Y/?ref=app
26th Feb 2017, 3:00 PM
Raj Kumar Chauhan
Raj Kumar Chauhan - avatar
+ 1
list1=[] a=int(input("how mNy numbers u want to store\n")) i=0 while i<a: b=input() list1.insert(i,b) i=i+1 q=1 l=a-1 while q<l: list1.pop(-2) q=q+1 for w in list1: print(w) This work. (I tried with 3 1 2 3 and 7 1 2 3 4 5 6 7 and had respectively 1 3 and 1 7) There was an index out of bound exception because when you pop, you change the size of the list so you should either pop -2 (second last) or 1 (second). I think you tried with 4 values and that is why you obtained the first and second last. 1 2 3 4 -> you pop the value at the index 1 -> 1 3 4 -> you pop the value at the index 2 -> 1 3
26th Feb 2017, 3:05 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
0
you forgot to cast a from string to int
26th Feb 2017, 2:28 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
0
please point out my mistake ...in which line i am coding wrong...
26th Feb 2017, 2:32 PM
mrinalini
mrinalini - avatar
0
replace a=input... by a=int(input...) and it should work
26th Feb 2017, 2:33 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
0
still i am not getting right answer....btw thanks for helping me
26th Feb 2017, 2:37 PM
mrinalini
mrinalini - avatar
0
strange, I did it on the sololearn IDE and it worked ..
26th Feb 2017, 2:40 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
0
yes it is displaying first number of list and second last number of list but i want it should display first and last number of list ...and if i am increasing the capacity of list more than 5 then it is displaying pop index out of range
26th Feb 2017, 2:48 PM
mrinalini
mrinalini - avatar
0
thank you to both of you sir for helping me
26th Feb 2017, 5:03 PM
mrinalini
mrinalini - avatar
0
my pleasure :)
26th Feb 2017, 6:57 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
0
@visph even if it is not useful in itself, it can be a good exercise to begin to learn about lists :)
26th Feb 2017, 6:57 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
0
i relay don't get this question can some one help me
8th Mar 2017, 7:57 PM
javon williams
0
@javon question is insert n number in a list and then pop all other numbers from list and store only first and last element of first list. check my code link to understand it better.
9th Mar 2017, 12:56 AM
Raj Kumar Chauhan
Raj Kumar Chauhan - avatar
- 1
chou
31st May 2017, 6:52 PM
Bruno
Bruno - avatar