Knowledge organisersVariables and Constants
Values that do not change.
A constant is a value that should not change while the program runs. Python has no built-in constant keyword, so by convention we use UPPER_CASE names to signal that a value should not be modified.
VAT_RATE = 0.2VAT_RATE = 0.2
MAX_LIVES = 3
price = 50
total = price + (price * VAT_RATE)
print(total) # 60.0