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.
series[1][2] = 3 val = 7
10になるように追加valするにはどうすればよいですか? series[1][2]series[1][2]
val
series[1][2]
series[1][2] += val
トリックを行う必要があります。
どうしたの:
series[1][2]+=val
値を別の変数に格納したい場合は、次のようにすることができます。
x = (series[1][2] + val)
それ以外の場合 series[1][2] += val は、合計後に追加する場合は問題なく作業できます。