Computer Science

Complete the code to create a list of every integer between 0 and 100, inclusive, named nums1 using Python, sorted in increasing order.

Python List Manipulation

16 Likes

Answer

nums1 = list(range(101))

Answered By

7 Likes


Related Questions