标签:python函数
#!/usr/bin/env python
#coding:utf-8
def func1():
print(‘in the func1‘)
return 0
def func2():
print(‘in the func2‘)
x=func1()
y=func2()
print(‘from func1 return is %s‘ % x)
print(‘from func2 return is %s‘ % y)
本文出自 “YHT的运维笔记” 博客,请务必保留此出处http://yht1990.blog.51cto.com/9014030/1945013
标签:python函数
原文地址:http://yht1990.blog.51cto.com/9014030/1945013