What Is a Variable?
Variables in programming are abstract local storages for values. In the previous section, you calculated a 5-year revenue. What if we need this exact same number in the future? Recalculating seems a bit irrational.
To refer to a specific value in the future, we need to use a particular name for the variable. Use the equality sign =
for assigning value to a variable. For example, you can assign the value 2022
to the variable year
, and then output it or perform any arithmetic operation using its name.
123456# Create a variable year = 2020 # Output its value print(year) # Perform an addition print(year + 10)
This is the ninth chapter of the course. Create a variable chapter
with a value of 9
.
Дякуємо за ваш відгук!
Запитати АІ
Запитати АІ
Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат
Запитайте мені питання про цей предмет
Сумаризуйте цей розділ
Покажіть реальні приклади
Awesome!
Completion rate improved to 4
What Is a Variable?
Свайпніть щоб показати меню
Variables in programming are abstract local storages for values. In the previous section, you calculated a 5-year revenue. What if we need this exact same number in the future? Recalculating seems a bit irrational.
To refer to a specific value in the future, we need to use a particular name for the variable. Use the equality sign =
for assigning value to a variable. For example, you can assign the value 2022
to the variable year
, and then output it or perform any arithmetic operation using its name.
123456# Create a variable year = 2020 # Output its value print(year) # Perform an addition print(year + 10)
This is the ninth chapter of the course. Create a variable chapter
with a value of 9
.
Дякуємо за ваш відгук!