08 2019 档案

摘要:strip(),replace()和re.sub()用法 语法 str.replace(old, new[, max]) 参数 old -- 将被替换的子字符串。new -- 新字符串,用于替换old子字符串。max -- 可选字符串, 替换不超过 max 次 re.sub(pattern, rep 阅读全文
posted @ 2019-08-30 09:34 6six 阅读(191) 评论(0) 推荐(0)
摘要:1.创建数据库create database test2.查询数据show databases3.删除数据drop database test4.使用数据库use test5.查看数据库test 有多少张表use testshow tables6.在test中创建新表create table stu 阅读全文
posted @ 2019-08-14 10:11 6six 阅读(136) 评论(0) 推荐(0)