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:
9
1
2
3
4
5
6
def add(a: int, b: int) -> int:
"""This function receives two integer arguments and returns its sum."""
return a + b
help(add)
123456def add(a: int, b: int) -> int: """This function receives two integer arguments and returns its sum.""" return a + b help(add)
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 1. Capítulo 6
Pergunte à IA
Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo