Module quiz: Basic Programming with Python - Module 2
Which of the following is not a sequence data-type in Python?
Dictionary
List
Tuples
String
For a given list called new_list, which of the following options will work:
new_list = [1,2,3,4]
Select all that apply.
new_list[4] = 10
new_list.e...