You have a function :
def volume(l:'length', w: 'width', h: 'height') -> 'result of multiplying l, w, h':
return l * w * h
What will be the result of calling volume.__annotations__['return'] ?
You have a function :
def volume(l:'length', w: 'width', h: 'height') -> 'result of multiplying l, w, h':
return l * w * h
What will be the result of calling volume.__annotations__['return'] ?
Create a free account to access the full topic