摘要: #为解决可读性差,重复代码 #定义格式 """ def 函数名(形参): 函数体 return 返回值/结束函数,多个值以元组形式返回 #执行 函数名(实参)#需要和函数形参数量一致 """ #1、示例 def my_len(OBJ): count = 0 for i in OBJ: count + 阅读全文
posted @ 2022-03-29 11:23 尐少 阅读(23) 评论(0) 推荐(0) 编辑
摘要: #id查询内存地址 name = 'Jerry' print(id(name)) #is 内存比较 name1 = 'Jerry' print(id(name1)) print(name is name1) #***小数据池 #只在str、int、bool存在,在一定范围内,如果两个数值相同,为了节 阅读全文
posted @ 2021-05-07 16:58 尐少 阅读(86) 评论(0) 推荐(0) 编辑
摘要: #字典{'key':'value', 'key1':'value} ''' 数据类型分类: 可变(不可哈希):list dict set 不可变(可哈希):str int tuple bool 容器类:list dic tuple 非容器类: str int bool 字典的key必须是不可变类型, 阅读全文
posted @ 2021-04-09 19:29 尐少 阅读(75) 评论(0) 推荐(0) 编辑
摘要: #列表 #增 L1 = ['test1', 'test2', True, 1] #末尾增加 L1.append(False) print('L1:', L1) #任意位置添加 L1.insert(1, False) print('L1:', L1) #迭代添加,括号里是可迭代对象,末尾追加 L1.e 阅读全文
posted @ 2021-03-01 19:50 尐少 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 基础数据类型int、str、bool转换 int 转 str str 转 int,必须全数字 int 转 bool,非零既真 bool 转 int,True = 1, False = 0 str 转 bool,非空为真,空为False bool 转 str 字符串操作 s = 'python' #索 阅读全文
posted @ 2021-01-18 16:05 尐少 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 建库 create database 库名 删库 drop database 库名 备份 backup database 库名 to disk='路径' 还原 restore database 库名 from disk='路径' 删表 drop table 表名 增加列 alter table 表名 阅读全文
posted @ 2018-11-21 21:42 尐少 阅读(122) 评论(0) 推荐(0) 编辑