help()
メニューを表示するにはスワイプしてください
While IDEs can provide hints for functions, these hints may not be available in environments such as Jupyter Notebook or console interpreter. To get information about a function or object, you can use the help() function:
123456def add(a: int, b: int) -> int: """This function receives two integer arguments and returns its sum.""" return a + b help(add)
すべて明確でしたか?
フィードバックありがとうございます!
セクション 1. 章 6
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください
セクション 1. 章 6