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)
Was alles duidelijk?
Bedankt voor je feedback!
Sectie 1. Hoofdstuk 6
Vraag AI
Vraag AI
Vraag wat u wilt of probeer een van de voorgestelde vragen om onze chat te starten.
Awesome!
Completion rate improved to 4.35
help()
Veeg om het menu te tonen
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)
Was alles duidelijk?
Bedankt voor je feedback!
Sectie 1. Hoofdstuk 6