摘要: 今日所学: 数字类型: 1).整型(int) 2).小数(float) 3).布尔类型(bool) 4).复数(complex) 重点:数字类型直接的相互转换 ***** a=10 b=3.74 c=True print(int(a),int(b),int(c)) print(float(a),fl 阅读全文
posted @ 2019-04-17 20:19 ..kamon 阅读(109) 评论(0) 推荐(0) 编辑