This is my beginner homework for creating urinalysis specimen quality evaluation for urine culture. I want to end the script early if a certain condition is met, but the script is still continuing. How can I end the script early?
print("Welcome to urinalysis specimen quality evaluation for urine culture")
no_epithelial_cell = input("Question 1 : Do epithelial cells in your specimen few or numerous? ")
if no_epithelial_cell == "Numerous" or "numerous" :
print("Specimen not qualified. Reject specimen ")
if no_epithelial_cell == "Few" or "few" :
no_bacteria = (input("Question 2 : Do bacterias in your specimen few or numerous? "))
if no_bacteria == "Numerous" or "numerous" :
print("Specimen not qualified. Reject specimen ")
if no_bacteria == "Few" or "few" :
no_WBC = (input("Question 2 : Does WBC in your specimen positive or negative? "))
if no_WBC == "Positive" or "positive" :
print("Suspect UTI. Proceed urine culture ")
if no_WBC == "Negative" or "negative" :
print("No evidence of UTI ")