本文共 163 字,大约阅读时间需要 1 分钟。
基础示例
# print absolute value of a integera = 100if a >= 0: print(a)else: print(-a)
转载于:https://blog.51cto.com/12846855/2397725