Code:
errorType = raw_input("Please enter A or B or C as the Error Type: ")
while errorType != "A":
print "Not valid"
errorType = raw_input("Please enter a valid Error Type ")
How do I set it up to do this as I am very new to Python.
Comment