What will be the output of the following, if marks=70?
if marks>=90:
print(“Keep it up!”)
elif marks>=80:
print(“well done!”)
elif marks>=70:
print(“Very Good!”)
else:
print(“Average”)
Answers
Answered by
2
Very Good!
Answered by
0
Answer:
average!
Explanation:
pls follow up and Mark me down as brainliest
Similar questions