python分支结构比较大小
时间: 2023-11-05 22:05:04 浏览: 124
多分支结构-Python程序流程控制课件
在Python中,比较大小的分支结构通常使用if-else语句实现。下面是一个比较两个数大小的示例代码:
a = float(input('Please input 1st number: '))
b = float(input('Please input 2nd number: '))
if a > b:
print(a)
else:
print(b)
以上代码会先要求用户输入两个数字,然后通过if-else语句比较两个数字的大小,并输出较大的数。
阅读全文