- 博客(5)
- 收藏
- 关注
原创 python 字符串、字典、元组、列表简单操作
python 字符串、字典、元组、列表简单操作 a = 'hello12345' print(a[2::-1]) print(a) a = [1, 2, 3, 4, 5] print(a[2::-1]) # [5, 4] # 字符串格式化 test = 'this %d is %s'%(666,'qwe') print(test) test1 = 'this {} is {}'.format(666,'qwe') print(test1) # 列表输出[10:]超列表长度也不会报错 test2 =
2020-12-07 15:22:47 134
原创 python 读CSV文件 删除标签保存至CSV文件
python 读CSV文件 删除标签保存至CSV文件 import csv def readCSVtoList(filePath): try: file=open(filePath,'r',encoding="gbk") context = file.read() list=context.split("\n")# \n分割成单独的行 length=len(list) for i in range(length):
2020-11-23 18:55:48 367
原创 flask和django的运行时间比较
flask和django的运行时间比较 flask接口: from flask import Flask, request import json app = Flask(__name__) def add_args(a, b): return a + b @app.route('/get_tasks',methods=["POST"]) def get_tasks(): if request.method == 'POST': a = request.form['
2020-11-10 17:07:46 141
原创 python 创建并开启进程的两种方法
python 创建并开启进程的两种方法 #方法一 直接调用 import time import random from multiprocessing import Process def run(name): print('%s runing' %name) time.sleep(random.randrange(1,5))#进程挂起 print('%s running end' %name) if __name__ == '__main__': p1=Proces
2020-09-20 14:15:33 542
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人