Why do certain words change color in Python?



To show that they are recognized as key words


To tell you that these words cannot be used in Python code


To show you that these words can be clicked


To tell Python to skip these words when running the code

Respuesta :

cassih
It’s should be the first choice

Certain words change color in Python  to show that they are recognized as key words.

What is python?

Python is a general purpose computer programming language that is used to generate a variety of programs to solve problems such as

  • building  websites and software
  • tasks automation
  • Data analysis.

In Phyton, Syntax highlighting is used when coding to display text according to source codes, category of terms and keywords.

For example:

  • typing “Hello, world!” in python will aromatically be  colored green because  Python knows this is a special type of keyword.
  • also typing  “print” will change to orange because Python recognizes it as a keyword.

See more for Phyton and colors :https://brainly.com/question/21575266