Creating numeric variables
Mastering variables is essential for effective coding and problem-solving in Python. By assigning values to variables, you can easily reference and update these objects throughout your code. This approach not only makes your code more organized and readable but also enhances its flexibility, allowing for quick adjustments and clear data handling.
Diese Übung ist Teil des Kurses
Introduction to Python for Finance
Anleitung zur Übung
- Assign
229.23
to the variablerevenue_1
. - Assign
177.86
to the variablerevenue_2
. - Assign
89.95
to the variablerevenue_3
.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Assign 229.23 to revenue_1
____
# Assign 177.86 to revenue_2
____
# Assign 89.95 to revenue_3
____