这段程序会输出什么?

来自 集合
Python 3.14 入门 2分钟

这段程序会输出什么?

Python
values = {True, 1, 1.0}
print(len(values))
print(True in values)
在试验场中打开
报告错误