Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个数学应用程序,问题答案存储在一个名为 answer 的变量中,我需要一种方法来检查答案是否有小数点,例如,如果生成的问题是 4 除以 3,我希望能够检查答案是否包含小数。谢谢你。
查看数学标准库。检查数字是否为整数的一种方法是使用 floor 函数:
x == math.floor(x)
当然,这假设 x 是一个数字而不是一个字符串。