Is there a way we can fetch first 10 results from a list. Something like this maybe?
list = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20]
list.fetch(10)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
will give you the first 10 elements of this list using slicing.
However, note, it’s best not to use
listas a variable identifier as it’s already used by Python: list()To find out more about this type of operation, you might find this tutorial on lists helpful and this link: Understanding slicing