我想在不使用 ** 运算符的情况下制作一个带有电源(在这里)的序列,这就是我到目前为止得到的

i want to make a fonction that make this sequence with a power (down here) without using the ** operator , and this is were i got so far

提问人:RmZ_lbs 提问时间:12/6/2022 更新时间:12/6/2022 访问量:15

问:

请求的序列

def Pw_e(e):
    for i in range(e+1):
        for x in range(i+1):
            num=1
            if x >0:
                xi=(num*=num*e) #pwr
                ix= x*e #mult
                ixi=+ ix*xi
                return ixi
print(Pw_e(5))

我绑在第一次使用 *= 运算符来进行电源调节,但是在我找到它的替代方案后发生了错误,它是单独使用 *= 操作数,它起作用了,但现在试图将其影响到一个变量它不起作用我应该从我的代码中单独定义一个函数 PWR 还是它可以在同一个循环中?!

循环 序列 python-3.10

评论


答: 暂无答案