刚学Python,基础的都还没怎么搞懂,有人晓得下面这些算式怎么转换成Python语言吗?稍微举个例子讲一讲就好
3条回答 默认 最新
- a5156520 2023-03-28 13:43关注
参考网络搜索的链接,依据题目式子,使用python自带的各库函数即可实现题目所求。
代码如下(仅供参考):
参考链接:https://blog.csdn.net/qq_51646682/article/details/127548778https://blog.csdn.net/Kzy__224/article/details/126598417https://www.python51.com/jc/11947.htmlhttps://jingyan.baidu.com/article/22a299b53396bbdf18376a7a.htmlhttps://blog.csdn.net/weixin_52026996/article/details/115307239https://baijiahao.baidu.com/s?id=1739557155390240365&wfr=spider&for=pcimport math import numpy as np x=12 y=10E-5 # https://blog.csdn.net/qq_51646682/article/details/127548778 s1 = 1+x/math.factorial(3)-y/ math.factorial(5) # https://blog.csdn.net/Kzy__224/article/details/126598417 # https://www.python51.com/jc/11947.html # https://jingyan.baidu.com/article/22a299b53396bbdf18376a7a.html s2 = 2*np.log(math.fabs(x-y))/(math.exp(x+y)-math.tan(y)) # https://blog.csdn.net/weixin_52026996/article/details/115307239 s3 = (math.sin(x)+math.cos(y))/(x*x+y*y)+ math.pow(x,y)/(x*y) # https://baijiahao.baidu.com/s?id=1739557155390240365&wfr=spider&for=pc s4 = math.exp(math.pi/2*x)+ math.log10(math.fabs(x-y))/(x+y) print(s1) print(s2) print(s3) print(s4)
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 1无用