python 判断三个数字中的最大值,具体代码如下所示:
#判断三个数中最大值
n1= int(input('please enter the firest number:'))
n2 = int(input('please enter the second number:'))
n3 = int(input('please enter the third number:'))
max_num = 0
if n1 > n2:
max_num = n1
if n1 > n3:
max_num = n1
else:
max_num = n3
else:
max_num = n2
你好,我可以回答你的问题。求三个数的最大值可以使用Python的内置函数max(),例如:
a = 10
b = 20
c = 30
max_num = max(a, b, c)
print(max_num)
输出结果为30,即三个数中的最大值。希望能帮到你。