用户:大方的铁奥o-Gz查看:1 回复:2 评论:1 创建时间:2019-07-09T10:41:37
一个数小于5,或者大于32时怎么写代码?
a=int(input('')) if a<5: pass if a<32: pass
点赞0
评论
x = float(raw_input()) if x < 5 or x > 32: pass