摘要: a = [1,2,3] b = a print(a,b) print(id(a),id(b)) # [1, 2, 3] [1, 2, 3] # 2346301641544 2346301641544 b += [4,5] print(a,b) print(id(a),id(b)) # [1, 2, 3, 4, 5] [1, 2, 3, 4, 5] # 2346301641544 23463016... 阅读全文
posted @ 2018-09-28 15:02 贺健龙 阅读(1411) 评论(0) 推荐(0) 编辑
摘要: 微信登陆错误问题 0、Error:You can't get access to internet or wechat domain, so exit. -> 可能1:certifi模块版本过高,回退低版本尝试 1、将certifi 回退 无效(卸载:pip3 uninstall -y certi 阅读全文
posted @ 2018-09-28 14:54 贺健龙 阅读(5680) 评论(0) 推荐(0) 编辑