f What will be output of following:
>>> a, b, c = 16.5, 3, 28
>>> print(a/b)
>>>print(a/b)
>>>print(c%b)
>>>print(b**2)
Answers
Answered by
1
Answer:
print(16.5/3)
5.5
print(28%3)
1
% gives the remainder
print(3**2)
9
a**2 gives a² i.e a to the power of 2
Similar questions