GitHubSign in

A value that cannot be altered by the program during normal execution, i.e., the value is constant.

"In many programming languages, you declare a constant using the 'const' keyword, indicating that its value will not change."

@openai

A constant is a value that will never change during the running time of the program.

"In Python, you can define a constant like `PI = 3.14` to represent the mathematical constant pi."

@gh-community