Best post on mutable list, list operations python – 2

list operations in python

List datatype and List operations Python supports many simple and compound datatypes. Few data types like list, dictionary are mutable and others like string datatype, tuple are immutable. Mutable datatypes means changes can be done and are reflected in same variable. Immutable datatypes means changes can be done but not in same variable. List is a container … Read more

Best post on list datatype in python – 1

list datatype in python

List Datatype in Python Python supports many simple and compound datatypes. Few data types like list, dictionary are mutable and others like string datatype, tuple are immutable. Mutable datatypes means changes can be done and are reflected in same variable. Immutable datatypes means changes can be done but not in same variable. List is a … Read more

Python program on list comprehension, enumerate Pract 5

Python program on list, list comprehension, enumerate function
Write a Python program to define a function that takes two lists and return True if they have at least one common member.
Write a python program to show use on enumerate() and its return value
Write a Python program to clone or copy a list.
Write a Python program to print a specified list after removing the 0th, 4th and 5th elements