New to Django, can someone explain the difference between
username=form.cleaned_data['username']
vs
username=form.cleaned_data.get('username')
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This will raise a
KeyErrorifusernamekey is not foundBut this will return
None(by default) if key is not found, does not raisesKeyErrorexception.Optionally you can change the default return value (if you use
.get) if key is not found.