What is the output of the following code ?
print(int(76.66+9/4))
"/" has higher precedence than "+". So 76.66+9/4 will be evaluated as 76.66 + 2.25results in 78.91int(78.91) will convert 78.91 to integer type
76.66+9/4
76.66 + 2.25
int(78.91)
Comment here: