I was checking some Python codes in Github and saw that there are some ->
notation in function definitions, something like this:
def func1(a,b) -> int:
returen a+b
What does it mean exactly? is it related to output type of function?
I searched the stackoverflow but I could not find any specific description about this. It would be appreciated if you could provide any documentation link.