How Can I Remove Duplicate Elements From A List | Python Tutorial

Duplicate elements in a list in pythons can be removed using different ways In This Python Tutorial we will discuss different ways to do so. List In Python A list in python is very important for Data structure, As a list allows us to insert different types of data in a single list. Although a … Read more

Some Basic Python Tuple Programs-1

Some basic tuple programs

Tuple A tuple is an immutable and sequential collection of data that can be indexed and sliced. Python tuple can contain homogeneous as well as heterogeneous values of data types such as integers, floats, strings, lists, and dictionaries. Python Program to concatenate multiple tuples tup1 = (7, 1, 9) tup2 = (5, 2, 3, 4, … Read more

%d bloggers like this: