摘要: 1、python里面is和==的区别是什么 2、说一下python里深赋值、浅赋值 阅读全文
posted @ 2021-05-17 09:05 灿烂初秋 阅读(71) 评论(0) 推荐(0) 编辑
摘要: bool #布尔类型 True #真 False #假 l = [1,2,3,4] print( 1>2 ) #False print( 4 in l) #True print(1 not in l) #False print( len(l) > 3) #True 比如,想写个while的死循环,可 阅读全文
posted @ 2021-05-17 08:53 灿烂初秋 阅读(52) 评论(0) 推荐(0) 编辑