摘要: 1 """ 2 python程序的流程 3 """ 4 # 分支结构 5 # if else 6 import math 7 8 x = -37 9 if x < 0: 10 y = math.fabs(x) 11 else: 12 y = math.sqrt(x) 13 print("计算的结果是 阅读全文
posted @ 2021-03-08 21:16 呆贝斯 阅读(129) 评论(0) 推荐(0) 编辑