Ai Practical File
Ai Practical File
● append()
● copy()
● clear()
● count()
● extend()
● index()
● insert()
● pop()
● remove()
● reverse()
● sort()
● min()
● max()
● len()
13. Create a list num =[23,12,5,9,65,44]
● Print the length of the list
● Print the elements from second to fourth index using
positive indexing
● Print the elements from third to fifth using negative
indexing.
14. The program to add the values in a list.
(using loop)
15. Create a list of first 10 even numbers, add 1 to
each list item and print the final
list.