摘要:
方法1: 用SET PASSWORD命令 首先登录MySQL。 格式:mysql> set password for 用户名@localhost = password('新密码'); 例子:mysql> set password for root@localhost = password('123' 阅读全文
摘要:
L=[1,2,3,3,5,5,5,8,4,6,9,7,2,'a','s','a','e','s','z']def DelDupli(L): L1=[] for i in L: if i not in L1: L1.append(i) return L1def DelDupli2(L): return 阅读全文