mylist = [6,32.6,90,'Mike',True,87,'Skidmore']
total = 0

for item in mylist:
    if type(item) is int or type(item) is float:
        total += item

print(total)
