Here are some examples for your practice: Examples on Datatypes. 1.) j = 100 k = 99 j != k k = j print(k) 2.) c = 4*1**4 print(c) 3.)b = int(22.22+2/2) print(b) 4.)a = "7" b = int(a) print(len('apple')*a) Example on Datastructures 6.) a = 1,2,3,4,5 print(type(a)) 7.)Tuple1= ("Black",[1,2,3],[4,5,6]) print(Tuple[1][1]) 8.)Tuple2= "White",10,"Green" a,b,c=Tuple2 print(a) 9.)Tuple3=(1,2,3,4,5,6,7,8,9) print(Tuple3[2:5],Tuple3[:4],Tuple[3:]) 10.)Tuple4=(10,20,30,40,50) print(Tuple4[-1]) print(Tuple4[-4:-1]) 11.)List1 = [4,3,9,7] List1[1:4] = [2,8,6] print(List1) 12.)List2=['xyz','zyx','yxz'] print(max(List2)) 11.)a,b,*c,d,e=[1,2,3,4,5,6] print(c) 12.)Set1={"Lion","Tiger","Zebra"} Set1.update("Rhino") print(Set1) 13.)Set2={"Lion","Tiger","Zebra"} y={"Rhino"} Set2.update(y) print(Set2) 14.)d = {} print(type(d)) 15.) Exercise on list: You ha...
Comments
Post a Comment