我正在编写一个 python 代码,我要求用户输入,然后我必须使用他们的输入来给出表达式答案的小数位数。
userDecimals = raw_input (" Enter the number of decimal places you would like in the final answer: ")
然后我将其转换为整数值
userDecimals = int(userDecimals)
然后我编写表达式,我希望答案的小数位数与用户从 UserDecimals 输入的一样多,但我不知道如何实现。
表达式是
math.sqrt(1 - xx **2)
如果这还不够清楚,我会尝试更好地解释它,但我是 python 新手,我还不知道该怎么做。