摘要: def absolute(x): if x >= 0: return x else: return -x print(absolute(3)) print(absolute(-119)) 阅读全文
posted @ 2022-10-30 17:58 博无止境 阅读(117) 评论(0) 推荐(0)