CBSE Class 11 Computer Science
Question 82 of 104
List Manipulation — Question 18
Back to all questions 18
Question Question 16
Complete the code to create a list of every integer between 0 and 100, inclusive, named nums1 using Python, sorted in increasing order.
Answer
nums1 = list(range(101))