What are 'Reserved Words'?

Asked by blessing007 · 6 months ago

1 Answer

11
amorebise · 6 months ago Top Answer

These are words that Python has 'claimed' for itself, like if, else, def, and while. You cannot use them as variable names.

It’s like trying to name your child 'Governor'—it will cause too much confusion. Python will give you an error if you try. Choose your own unique names!

Log in to add a comment.