Check for a particular command in a students response.

Re: Check for a particular command in a students response.

de Richard Lobb -
Número de respuestas: 2
En respuesta a Richard Lobb

Re: Check for a particular command in a students response.

de Levi Osborne -
This is awesome! Thank you so much exactly what I needed. 

If I wanted to make sure there was a command in the answer (The opposite of the video) I would use something like this instead correct?

if not 'while' in __student_answer__:
    print("You must use a while loop for credit!", file=sys.stderr)
    sys.exit(1)