Created
April 27, 2020 22:33
-
-
Save mauricioobgo/580132a4f4edf8ea10246e433743a94b to your computer and use it in GitHub Desktop.
proof
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from class_valuation_calculus import valuation_calculus as valuation | |
#Método main para ejecución de valoración | |
def main(): | |
variable_iterate_process = True | |
valuation_object=valuation() | |
while ( variable_iterate_process ==True): | |
valuation_object.construct_info_need_valuate() | |
valuation_object.parameters_calculation_binomial_case() | |
valuation_object.definition_binomial_tree_calculation() | |
print("Desea continuar valorando opciones (SI/NO): ") | |
response_question_continue=input() | |
if(str(response_question_continue).upper().strip()!="SI"): | |
variable_iterate_process=False | |
if __name__ == '__main__': | |
main() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment