def printMax(a,b):
if a>b:
print (a, ‘is maximum’)
elif a==b:
print (a,’os equal to’, b)
else:
print (b,’is maximum’)
printMax (3, 4)
Answers
Answered by
2
Answer:
Hi...
Explanation:
Your answer will be ...
B is maximum..
Hope it helps you
Please mark brainliest
Answered by
2
Answer:
score = float(raw_input("Enter score between 0.0 and 1.0: "))
if score>1.0 or score<0.0 :
print ("error")
elif score>=0.9 :
print ('A')
elif score>=0.8 :
print ('B')
elif score>=0.7 :
print ('C')
elif score>=0.6 :
print ('D')
else :
print ('F')
Explanation:
Similar questions