题解 | #谁的数字大#
谁的数字大
https://www.nowcoder.com/practice/13ca6fc3f6a145a5b6642b26d6575634
x, y = input().split(' ')
print(x > y) # 两个str类型数字也可以比较ascii编码
print(x < y)
谁的数字大
https://www.nowcoder.com/practice/13ca6fc3f6a145a5b6642b26d6575634
x, y = input().split(' ')
print(x > y) # 两个str类型数字也可以比较ascii编码
print(x < y)
相关推荐