码迷,mamicode.com
首页 > 编程语言 > 详细

Python函数

时间:2017-07-06 18:33:27      阅读:134      评论:0      收藏:0      [点我收藏+]

标签: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函数

标签:python函数

原文地址:http://yht1990.blog.51cto.com/9014030/1945013

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!