What does this program print?

from Sets
Python 3.14 beginner 2 min

What does this program print?

Python
values = {True, 1, 1.0}
print(len(values))
print(True in values)
Open in playground
Report an error