Eligibility Criteria - 3
This Program name is Eligibility Criteria - 3. Write a Python program to Eligibility Criteria - 2, it has two test cases
The below link contains Eligibility Criteria - 3 question, explanation and test cases
https://drive.google.com/file/d/1yiA-NxCpGk5uTvtilgzcNU0krAKbDIv4/view?usp=sharing
We need exact output when the code was run
M=int(input("Enter score for Maths: "))
P=int(input("Enter score for Physics: "))
C=int(input("Enter score for Chemistry: "))
if(((M+P>=90) or (M+C>=90) or (P+C>=90)) and M>=35 and P>=35 and C >= 35 ):
print("TRUE")
else:
print("FALSE")
Comments
Leave a comment