You are on page 1of 1

l6=[12,34,45,'rakesh',67.

67,[120,34,45],(45,56),{'name':'vipul'}]
s=0

for x in l6:
if type(x)==int:
s= s+x

print('Sum of integer :',s)

You might also like