Maison  >  Article  >  développement back-end  >  python的函数定义和调用

python的函数定义和调用

巴扎黑
巴扎黑original
2016-12-08 10:26:581575parcourir

Forward declaration 
http://en.wikipedia.org/wiki/Forward_declaration 

everything has to be defined before you call it 


This is exactly the same as in C/C++" Well no it is isn't at all really. You can have a forward definition of a function in C but you cannot in Python. You can have run-time checking of functions in Python but cannot in C. You can have implicit prototypes in C and that is similar. 


所以,python只能先定义后调用。

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Article précédent:python判断闰年Article suivant:python实现二叉查找树