は、だから、私は恩着せ順に出力を追加することができますどのようにコード使用のPython
def formula(n):
while(n < 11):
answera = 15/(-4)** n
print(answera)
n = n + 1
formula(1)
がありますか?ここ
例えば、
first_output = (the output of n = 1)
second_output = (the output of n = 1) + (the output of n = 2)
third_output = (the output of n = 1) + (the output of n = 2) + (the output of n = 3)
など..
n番目の出力=出力N +(N-1)番目出力 –
中間出力は気になりますか?つまり、式(1)と式(2)がどのように見えるか気になりますか?そして、明確にするために:あなたは 'formula'をとり、それを1、2、3 ...のような入力リストに適用したいのですか? – Makoto
機能が不明です。 'n = 1'の場合、結果は10個の異なる' n '値の '15 /( - 4)** n'の10倍の合計ですか?または 'formula(n)'は '15 /( - 4)** n'を返すだけですか? – ozgur