摘要:
We've installed your MySQL database without a root password. To secure it run: mysql_secure_installation To connect run: mysql -uroot To have launchd 阅读全文
摘要:
1.列表推导式: res = [func(x) for x in iterable] 跟内建的map函数一个效果:res = list(map(func,iterable)) 也就是: func(x) for x in iterable == map(func,iterable) 结果解析:遍历it 阅读全文