摘要: 1、查看或显示数据库:show databases; information_schema:主要存储了系统中的一些数据库对象信息,比如用户表信息、列信息、权限信息、字符集信息和分区信息等 mysql:MySQL 的核心数据库 performance_schema:主要用于收集数据库服务器性能参数 s 阅读全文
posted @ 2021-12-01 12:58 呆呆蒙蒙 阅读(24) 评论(0) 推荐(0) 编辑
摘要: name = None print(name,type(name)) #判断变量是否 None 不能用type和isinstance # print(isinstance(name,NoneType)) # print(type(name)==NoneType) # print(isinstance 阅读全文
posted @ 2021-12-01 12:50 呆呆蒙蒙 阅读(440) 评论(0) 推荐(0) 编辑