1.(p14)比较两个数的大小
![](https://images.cnblogs.com/OutliningIndicators/ContractedBlock.gif)
![](https://images.cnblogs.com/OutliningIndicators/ExpandedBlockStart.gif)
a = int(input('num:'))b = int(input('num:'))def getMax(a,b): if a>b : print('The bigger number is a:') else: print('The bigger number is b:')getMax(a,b)
2.
本文共 257 字,大约阅读时间需要 1 分钟。
1.(p14)比较两个数的大小
a = int(input('num:'))b = int(input('num:'))def getMax(a,b): if a>b : print('The bigger number is a:') else: print('The bigger number is b:')getMax(a,b)
2.
转载于:https://www.cnblogs.com/chengxiaofeng/p/10778196.html