摘要:
非空即真,非0即真 可以简化自己的代码 None {} () [] '' 这些都是False 非空就是True username = input('username:') if username.strip(): #不为空 print('你输入的不为空',username) else: print( 阅读全文
摘要:
问题: l = [0, 1, 2,2, 3, 4, 5] for i in l: if i % 2 == 0: l.remove(i) print(l) # [1,2,3,5] 原因:删除的过程中下标变了 解决: l = [0, 1, 2,2, 3, 4, 5] l2 = [0, 1, 2,2, 3 阅读全文