[(1,2),(2,3),(4,5),(3,4),(6,7),(6,7),(3,8)]
How do I return the 2nd value from each tuple inside this list?
|
|
With a list comprehension.
|
|||||||||||
|
|
Ignacio's answer is what you want. However, as someone also learning Python, let me try to dissect it for you... As mentioned, it is a list comprehension (covered in DiveIntoPython3, for example). Here are a few points:
It's tough to tell how much you attempted the problem prior to asking the question, but perhaps you just weren't familiar with comprehensions? I would spend some time reading through Chapter 3 of DiveIntoPython, or any resource on comprehensions. Good luck. |
|||||||
|
|
A list comprehension is absolutely the way to do this. Another way that should be faster is
In response to the comment that the OP couldn't find an answer on google, I'll point out a super naive way to do it.
This uses:
If somebody is trying to learn a language and can't put together these basic pieces for themselves, then they need to view it as an exercise and do it themselves even if it takes twenty hours. One needs to learn how to think about what one wants and compare that to the available tools. Every element in my second answer should be covered in a basic tutorial. You cannot learn to program without reading one. |
|||
|
|
|
Might I suggest http://heather.cs.ucdavis.edu/~matloff/Python/PythonIntro.pdf Go to the section on Tuples. You will have your answer as well as a superior guide to learning Python fundamentals. |
|||
|