[Fixed]-String not matching in django/python

1👍

✅

Just try to strip out the spaces during equality check.

if p.user.strip()==username.strip():

And also it’s better to do apply strip before saving the data to db. By this way, we don’t need apply strip on db object while during equality check.

string.strip() will remove all the unnecessary leading and trailing spaces.

Leave a comment