list method:list.pop()
Give this one a try later!
Removes the element at the specified position
Strings are immutable,so that means:
, Give this one a try later!
Individual characters in the string can't be changed
Lists can be _______ and ______ to access elements
Give this one a try later!
indexed, sliced
list method:list.count()
Give this one a try later!
Returns the number of elements
List Method:list.append()
Give this one a try later!
Adds an element to the end of the list
The list currently is [a,1,a]
you use list.remove('a')
Give this one a try later!
Removes the element at the specified position
Strings are immutable,so that means:
, Give this one a try later!
Individual characters in the string can't be changed
Lists can be _______ and ______ to access elements
Give this one a try later!
indexed, sliced
list method:list.count()
Give this one a try later!
Returns the number of elements
List Method:list.append()
Give this one a try later!
Adds an element to the end of the list
The list currently is [a,1,a]
you use list.remove('a')