Dictionaries in python July 14, 2019 Dictionaries have keys on one column and values on other column. one column contain label or character and other column contain intege...Read More
Sets in python July 10, 2019 Set is one type of unordered list , It is any type of collection. you can add number of elements inside list inside "{}" brac...Read More
List and Tuple 2 July 05, 2019 List: List are ordered sequence. List represented by square bracket '[ ]'. List contain string , float and int. L = [...Read More
List and Tuples July 05, 2019 List and tuples: Tuples:- It is an ordered sequence. Tuples are expressed as follows, Tuples_1 = (1,2,3,4,5,6,7,8,9,10) Tuples...Read More