摘要: 一、Python可切片对象的索引方式 Python可切片对象的索引方式包括:正索引和负索引两部分。如下图所示,以a = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]为例: 二、Python切片操作的一般方式 一个完整的切片表达式包含两个“:”,用于分隔三个参数(start_index 阅读全文
posted @ 2020-05-26 18:19 tooltime 阅读(1606) 评论(0) 推荐(0) 编辑
摘要: 析构函数:__del__() 释放对象是自动调用 class Person(object): def run(self): print("run") def eat(self, food): print("eat" + food) def __init__(self,name,age,height, 阅读全文
posted @ 2020-05-26 18:06 tooltime 阅读(631) 评论(0) 推荐(0) 编辑
摘要: 1.之前的写法(不报错):data = cursor.fetchall()data_name = data[0]['task_type'] 2.简洁的写法(报错):data = cursor.fetchall()[0]['task_type'] 用 2 的写法报错之后,一度怀疑是数据库出了问题。不服 阅读全文
posted @ 2020-05-26 18:03 tooltime 阅读(1905) 评论(0) 推荐(0) 编辑
摘要: 导入模块 import pymysql 连接(看一下password有没有,没有的话会怎么样,有很多参数,有些参数也是可以不传的) conn = pymysql.connect(user = "root",host = "127.0.0.1",port = 3306,charset = "utf8" 阅读全文
posted @ 2020-05-26 18:00 tooltime 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 正文 描述 Python find() 方法从字符串中找出某个子字符串第一个匹配项的索引位置,该方法与 index() 方法一样,只不过如果子字符串不在字符串中不会报异常,而是返回-1。 语法 find() 方法语法: S.find(sub[,start=0[,end=len(S)]]) 参数 su 阅读全文
posted @ 2020-05-26 17:53 tooltime 阅读(2267) 评论(0) 推荐(0) 编辑
摘要: enumerate()是python的内置函数enumerate在字典上是枚举、列举的意思对于一个可迭代的(iterable)/可遍历的对象(如列表、字符串),enumerate将其组成一个索引序列,利用它可以同时获得索引和值enumerate多用于在for循环中得到计数例如对于一个seq,得到: 阅读全文
posted @ 2020-05-26 16:37 tooltime 阅读(815) 评论(0) 推荐(0) 编辑
摘要: #Python3中已取消iteritems()方法 描述 Python 字典 items() 方法以列表形式(并非直接的列表,若要返回列表值还需调用list函数)返回可遍历的(键, 值) 元组数组。 语法 items() 方法语法: D.items() 参数 无。 返回值 以列表形式返回可遍历的(键 阅读全文
posted @ 2020-05-26 16:05 tooltime 阅读(991) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- """ @description: xxx @time: 2019/12/22 1:03 @author: baojinlong """ import random import time import datetime import pymysql 阅读全文
posted @ 2020-05-26 15:58 tooltime 阅读(345) 评论(0) 推荐(0) 编辑