MySQL丨2. Mac 设置中无法启动MySQl
Mac 设置中无法通过控制面板 启动 、 关闭 MySQl
MySQL丨1. Mac导入文件错误1290
1290 - The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
Python 丨1. filter 过滤函数
filter(x,[]):x为约束条件,可以传入特定值,及函数, [] 传入数据列表。 # 按照None过滤 temp = filter(None,[1,2,0,False,True]) list(temp) # Out:[1, 2, True]