print(type((lambda x, y, z: int((x + y + z)/3))(10, 11, 12)))
In the above code, I have used int() annotation but as per the python documentation, lambda functions cannot contain annotations. Then why am I not getting any error when using an annotation?