现在有变量 num = 100.0,数据类型为浮点类型。现在想要让该变量的值变为 100, 数据类型为整数类型。以下哪个语句能够实现?
num = float(num)
num = int(num)
float(num)
int(num)