Skip to content
#1. Python offers a range of compound datatypes often referred to as ________
#2. A ______ is created by placing all the items inside a square bracket separated by commas.
#3. The _____ operator to access an item in a list.
#4. Python allows ______ indexing for its sequences.
#5. We can access a range of items in a list by using the _______ operator.
#6. List are ______, their elements can be changed unlike string or tuple.
#7. We can add one item to a list using _____ method.
#8. We can add several items in list using _____ method.
#9. We can also use ____ operator to combine two lists.
#10. The _______ operator repeats a list for the given number of times.
#11. Insert an item at the defined index.
#12. Removes an item from the list.
#13. Removes and returns an element at the given index.
#14. Removes all items from the list.
#15. We can test if an item exists in a list or not, using the keyword _____
#16. _____ cannot change the elements once it is assigned.
#17. A ________ is created by placing all the items inside a parentheses() separated by comma.
#18. An ______ is a data structure that stores values of same data type.
#19. Add items from list into array using _______ method.
#20. Reverse a python array using _____ method.
#21. Check for number of occurrences of an element using ____ method.
#22. Convert array to string using _____ method.
#23. Convert array to a python list with same elements using _____ method.
#24. Append a string to char array using _______ method.
#25. __________ is an algorithm which is used to sort N elements that are given in a memory.