gpt4 book ai didi

python - 非常简单的python函数

转载 作者:太空宇宙 更新时间:2023-11-04 01:21:15 24 4
gpt4 key购买 nike

def myfun(x,y):
z=x+y
Print("my x is", x)
Print("my y is", y)
Print("my z is", z)

myfun(1,2)
myfun(3,4)
myfun(5,6)
myfun(x,y)

这是我想做的事情的想法。函数的前 3 次调用是预先确定的,在第 4 次中,我想提示用户输入,无论如何我可以用 1 个函数(不更改格式)来做到这一点,因为最终格式需要是..

my x is 1
my y is 2
my z is 3
my x is 3
my y is 4
my z is 5
my x is 5
my y is 6
my z is 7
my x is (userinput)
my y is (userinput)
my z is ...

有什么方法可以让我用一个函数正确地做到这一点?

最佳答案

def myfun(x=0, y=0):
z = x + y
Print("My x is", x)
Print("My y is", y)
Print("My z is", z)

myfun(1,2)
myfun(3,4)
myfun(5,6)
# here you can make a input for x and y and then you type cast the string in int
x = int(raw_input('Input x: '))
y = int(raw_input('Input y: '))
myfun(x,y)

如果您使用 Python 3.x,请使用 input() 而不是 raw_input()

x = int(input('Input x: '))
y = int(input('Input y: '))
myfun(x,y)

关于python - 非常简单的python函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21028565/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com