28 – Simple and easy program to check if one list is reverse of another
Simple and easy Python program to check if one list is reverse of another. This program will help students to understand the concepts of slicing in list.
Let's sail across an ocean of IT
Simple and easy Python program to check if one list is reverse of another. This program will help students to understand the concepts of slicing in list.
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
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, 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