フェルマーの小定理をプログラムで確かめたいのですが、どこがまちがってますか?
line2にcan’t assign to function callとでます!
python
1コード 2def f(p): 3 f(p)=(a**(p-1))%p 4 for a in range(1,p-1): 5 return f(p) 6p=13 7print(f(p))
現状のコードではどういう不具合があるんでしょうか
結果(実際に起きたこと)を書きましょう | 質問するときのヒント|teratail(テラテイル)
https://teratail.com/help/question-tips#questionTips3-4-1
エラーメッセージや実行ログをコピー&ペーストしましょう | 質問するときのヒント|teratail(テラテイル)
https://teratail.com/help/question-tips#questionTips3-4-2
期待した処理結果を書きましょう | 質問するときのヒント|teratail(テラテイル)
https://teratail.com/help/question-tips#questionTips3-4-3
line2にcan’t assign to function callとでます!
ならそれを質問に追記してください。
質問文は編集できます
分かりました、ありがとうございます!
回答2件
あなたの回答
tips
プレビュー