函数与变量

#coding=gbk
#coding=utf-8
from pip._vendor.distlib.compat import raw_input
from builtins import int

#定义一个函数与两个形参
def  one_function(first_function,second_function):
    print("You have %s book!" % first_function)
    print("XiaoMing have %s book!" % second_function)
    print("I LOVE PYTHON")
    #"\n"代表空一行
    print(" Get a book.\n")

print("第一次传参:")
#传入实参
one_function(20, 30)

print("第二次传参:")
#定义实参
a_first_function = 6
b_second_function = 6
#a_first_function = int(raw_input()) #传入的数字转换为int类型,而不是str类型
#b_second_function = int(raw_input())#传入的数字转换为int类型,而不是str类型
one_function(a_first_function, b_second_function)

print("第三次传参:")
#传入参数first_function=1+2,second_function=4+6
one_function(1+2, 4+6)

print("第四次传参")
#读取第二次传入的参数值--->a_first_function的值+6和b_second_function的值+66
one_function(a_first_function + 6, b_second_function + 6)

执行结果如下:

第一次传参:
You have 20 book!
XiaoMing have 30 book!
I LOVE PYTHON
Get a book.

第二次传参:
You have 6 book!
XiaoMing have 6 book!
I LOVE PYTHON
Get a book.

第三次传参:
You have 3 book!
XiaoMing have 10 book!
I LOVE PYTHON
Get a book.

第四次传参
You have 12 book!
XiaoMing have 12 book!
I LOVE PYTHON
Get a book.

转载于:https://www.cnblogs.com/AIHEN/p/9011492.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值