Variables
Variables store values that you can use later.
x = 10name = "oxygen"active = TrueYou can use variables in expressions:
a = 5b = 3result = a + bprint(result)Output: 8
See also
Section titled “See also”- Language Reference: the compact language syntax reference, including type annotations
- Print: showing values in the console