list1 = [["himanshu", 1],["mohit",2]]
for item , lollypop in list:
print(item,lollypop)
print(item,"and lolly is", lollypop)
dict1 = dict(list1)
print(dict1)
for item,lollypop in list1:
print(item,"and lolly is ",lollypop)
items = [int,float,"himanshu",12,2,34,5,5,6,7,8,]
for item in items:
if str(item).isnumeric() and item>6:
print(item)