📜  Python中至少有两个数字

📅  最后修改于: 2022-05-13 01:54:22.925000             🧑  作者: Mango

Python中至少有两个数字

给定两个数字,编写一个Python代码来找到这两个数字的最小值。

例子:

Input: a = 2, b = 4
Output: 2

Input: a = -1, b = -4
Output: -4

方法#1:这是一种简单的方法,我们将使用 if-else 语句比较数字并相应地打印输出。

例子:

# Python program to find the
# minimum of two numbers
  
  
def minimum(a, b):
      
    if a <= b:
        return a
    else:
        return b
      
# Driver code
a = 2
b = 4
print(minimum(a, b))

输出:

2

方法 #2:使用 min()函数

此函数用于查找作为其参数传递的值的最小值。

例子:

# Python program to find the
# minimum of two numbers
  
  
a = 2
b = 4
  
minimum = min(a, b)
print(minimum)

输出:

2