Python 3 基礎からDeep Learning まで

Python 3の勉強を始めました! 気になる箇所,つまづいて復習しなおしたところなどまとめていきます! 質問・ご意見等,大歓迎です!

2018-03-01から1ヶ月間の記事一覧

Python 3: print と return について(超基礎)

print()とreturnについて 関数の定義でprint()とreturnどちらをつかうべきか? print()・・・表示するだけ return・・・戻り値を返す >>> def print_hello(): ... print("hello") ... >>> print_hello() hello >>> def return_hello(): ... return "hello" .…