Assignment and equality
When looking at someone's wealth, a distinction between cash and non-cash securities is important. Savings and checking accounts are cash securities. Stock positions are non-cash.
Imagine that as part of balancing a client's wealth portfolio, you are asked to compare their cash and non-cash securities. The variable non_cash
is provided with the value of the non-cash securities.
Este ejercicio forma parte del curso
Intermediate Python for Finance
Instrucciones del ejercicio
- Assign a value of 19.11 to the variable
cash
. - Check if
cash
andnon_cash
have the same value. - Assign to
cash
the value ofnon_cash
. - Confirm that
cash
andnon_cash
are equal.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Assign a value to cash.
____ ____ ____
# Check if cash is equal to non-cash
print(____ ____ ____)
# Assign the value of cash to be equal non-cash
____ ____ ____
# Check if cash is equal to non-cash
print(____ ____ ____)