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.
以下に示すような関数で return を使用して .py ファイルを作成しようとすると、
def results(s1,s2): return s1+s2 results(3,4)
ターミナルで .py ファイルを実行しようとしても結果が表示されないのはなぜですか?
また、RETURNステートメントとその目的をどこでどのように使用するかについて詳しく説明してください
あなたがそれを見せていないので、それは結果を示していません!明示的に印刷する必要があります:
print results(3, 4)
Python の対話モードから関数を呼び出すと、戻り値が表示されますが、これは開発にとって便利です。
結果を印刷していません。これを使って:
def results(s1,s2): return s1+s2 print results(3,4)