Write the output of the following:
val = 20
def display (N):
val = 25
if N%5 == 0:
val = val + N
else:
val = val - N
print(val, end="#")
display(70)
print(val)1.70#20
2.95#20
3.75#20
4.50#20
Posted Date:-2021-12-12 04:25:01