摘要:
if命令 常见用法: if "字符串1" == “字符串2 command语句 if 数值1 equ 数值2 command语句 if exist filename command语句 if not exist filename command语句 if errorlevel 数值 command语 阅读全文
摘要:
Python之正则表达式 正则表达式重在处理字符串规则 普通字符 import re # 普通字符 result = re.findall("p", "python") print(result, type(result)) result = re.findall("o", "I love pyth 阅读全文
摘要:
配置以下权限即可: flush privileges; grant all ON *.* to 'root'@'localhost' with grant option; grant all on cactidb.* to root@'localhost' identified by 'root'; 阅读全文