What is the output of the following ?
>>> a = 60 >>> b = 90 >>> avg = (a + b) / 2 >>> print(avg)
75
75.0
75.55
76
avg will be converted to float type automatically
Comment here: