美文网首页python学习笔记
python练手_47-函数交换变量

python练手_47-函数交换变量

作者: 学子CH | 来源:发表于2019-02-15 20:27 被阅读0次
    # -*- coding:utf-8 -*-
    # @Author: CH
    """
    @project: python study
    @time:2019/1/7-23:28
    @file_name:【程序47】函数交换变量.py
    @IDE:PyCharm 
    @else: DO NOT STOP STUDYING!!!
    """
    
    # 题目 两个变量值用函数互换。
    # 程序分析 无
    def exc(a,b):
        return (b,a)#就是交换返回的位置,达到变换变量的功能
    a=0
    b=10
    a,b=exc(a,b)
    print(a,b)
    
    

    相关文章

      网友评论

        本文标题:python练手_47-函数交换变量

        本文链接:https://www.haomeiwen.com/subject/qoameqtx.html