📜  检查列表是否按升序排列python代码示例

📅  最后修改于: 2022-03-11 14:45:21.193000             🧑  作者: Mango

代码示例1
n = list(map(int, input().split())) #assign list values from input
if sorted(n) == n: #for descending, use sorted(n, reverse=True)
  print("Yes")
else:
  print("No")
  
#Hope this helps:)