| ???? Python ??? | ??7?? ???? | |
|---|---|---|
| ???? | return??? | ???? |
return???????????????? ???? ????????????????????????? ???????? ??
#!/usr/bin/python
# Filename: func_return.py
def maximum(x, y):
if x > y:
return x
else:
return y
print maximum(2, 3)
????????code/func_return.py??
$ python func_return.py
3
maximum????????????§Ö?????????????????????????????????¨¹???if..else?????????????????? ???? ??????
?????§Ù??????return???????return None??None??Python?§Ò??????¦Ê¦Æ?????????????????íà??????????????None????????????????
???????????????return???????????????¦Â??????return None??????????print someFunction()????????????????????someFunction??????return????????
def someFunction():
pass
pass?????Python?§Ò???????????î•
| ???? | ????? | ???? |
|---|---|---|
| ??????? | ??? | DocStrings |