Answers for "python list [1::3]"

3

list in python 3

list1 = ['physics', 'chemistry', 1997, 2000];
list2 = [1, 2, 3, 4, 5 ];
list3 = ["a", "b", "c", "d"];
Posted by: Guest on February-19-2021
0

list -1 python

l = [1,2,5,9,7,4,5]

# what are you referring to?
# 1) l[-1] is the last element of list
print(l[-1])
>>> 5

# 2) l[:-1] returns all the elements of the list but the last one
print(l[:-1])
>>> [1,2,5,9,7,4]
Posted by: Guest on May-18-2021

Python Answers by Framework

Browse Popular Code Answers by Language