Do you mean the id has different color than ie. name? I guess that’s because Python actually has built-in function id, so syntax-highlighter must be confusing the shadowed variable with function.
If you want to use a built-in name as your variable name (id, sum, …etc), it is a convention in Python to add an underscore at the end (id_, sum_, …etc).