摘要: 1、比较 (1) 相等不等比较 temp1="1" temp2="2" if temp1 != temp2: print("temp1 != temp2") else: print("temp1 == temp2") temp1="1" temp2="2" if temp1 == temp2: pr 阅读全文
posted @ 2020-12-17 22:19 夏之夜 阅读(646) 评论(0) 推荐(0)