What is the output of the following program?
tup = (2e-04, True, False, 8, 1.001, True) val = 0 for x in tup: val += int(x) print(val)
12
11
11.001199999999999
TypeError
This question is part of this quiz :