Nested function calls sh_07_

 

Nested function calls sh_07_

DEF test1 (): 

    Print ( " * " * 50 ) 


DEF test2 (): 

    Print ( " - " * 50 ) 

    # function nested calls 
    test1 () 

    Print ( " + " * 50 ) 

test2 ()

 

Guess you like

Origin www.cnblogs.com/shaohan/p/11519312.html