Зміст курсу
Типи даних у Python
Типи даних у Python
Змінювані та Незмінювані Типи Даних
Незмінювані типи даних, як випливає з назви, не можуть бути змінені після їх створення.
На відміну від них, змінювані типи даних - це об'єкти, які можна змінювати після їх створення.
Immutable data types cannot be changed once they're created. In contrast, mutable data types can be altered after their creation.
To conclude, int
and float
are examples of immutable data types in Python. Reassigning a variable of these types does not alter their immutability.
Swipe to begin your solution
Imagine you are managing a budget for a small project. Initially, your available budget is set to $100. However, you receive an additional funding of $50. Update the value of the project_budget
variable to reflect the total available budget.
Once you've completed this task, click the button below the code to check your solution.
Рішення
Дякуємо за ваш відгук!
Змінювані та Незмінювані Типи Даних
Незмінювані типи даних, як випливає з назви, не можуть бути змінені після їх створення.
На відміну від них, змінювані типи даних - це об'єкти, які можна змінювати після їх створення.
Immutable data types cannot be changed once they're created. In contrast, mutable data types can be altered after their creation.
To conclude, int
and float
are examples of immutable data types in Python. Reassigning a variable of these types does not alter their immutability.
Swipe to begin your solution
Imagine you are managing a budget for a small project. Initially, your available budget is set to $100. However, you receive an additional funding of $50. Update the value of the project_budget
variable to reflect the total available budget.
Once you've completed this task, click the button below the code to check your solution.
Рішення
Дякуємо за ваш відгук!