2021年6月8日
摘要: 本文参考https://blog.csdn.net/df0128/article/details/80953755 1.用户参数 在应用的时候使用${username}即可。用户参数相比Csv data set config的弊端在于,不适合取值范围非常大。 2.Bean Shell PreProc 阅读全文
posted @ 2021-06-08 13:45 慢乌龟 阅读(78) 评论(0) 推荐(0) 编辑
摘要: import turtle from random import * from math import * turtle.seth(90) def tree(n,l): turtle.down() turtle.pencolor('#410200') turtle.pensize(n*3) turt 阅读全文
posted @ 2021-06-08 13:41 慢乌龟 阅读(62) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python3 #coding=utf-8 import json import requests class iciba: # 初始化 def __init__(self, wechat_config): self.appid = wechat_config['appid'] 阅读全文
posted @ 2021-06-08 13:40 慢乌龟 阅读(597) 评论(0) 推荐(0) 编辑
摘要: 1.安装要注意版本,默认pip install pyecharts安装的是最高版本,导入要使用最新的from pyecharts.charts import Bars 如要指定版本安装需要pip wheel pip install pyecharts==0.1.9.4 安装完成后pip list-- 阅读全文
posted @ 2021-06-08 13:37 慢乌龟 阅读(1343) 评论(0) 推荐(0) 编辑
摘要: https://www.jb51.net/article/179139.htm #coding=utf-8 import requests import re import socket import json from bs4 import BeautifulSoup socket.setdefa 阅读全文
posted @ 2021-06-08 13:36 慢乌龟 阅读(116) 评论(0) 推荐(0) 编辑
摘要: r:只读模式(默认) w :只写模式,如果文件不存在就创建,如果存在,写入的数据会覆盖原来的数据 b :二进制模式 t :文本模式 +:可写可读模式 a:追加模式,如果文件存在则文件指针指向文件末尾(追加数据),如果不存在就创建 r+:读追加模式,先读,再追加 w+:写读模式,先写,意味着原本内容丢 阅读全文
posted @ 2021-06-08 13:35 慢乌龟 阅读(30) 评论(0) 推荐(0) 编辑
摘要: <html> <head> </head> <body class="nodata"> <div class="hdata"> <span class="choose_money " data-id="6">6C币</span> <span class="choose_money " data-id 阅读全文
posted @ 2021-06-08 13:33 慢乌龟 阅读(40) 评论(0) 推荐(0) 编辑
  2021年6月7日
摘要: 字符串: 参见https://www.runoob.com/python3/python3-string.html 列表: Python包含6中内建的序列,即列表、元组、字符串、Unicode字符串、buffer对象和 xrange 对象。序列通用的操作包括:索引、长度、组合(序列相加)、重复(乘法 阅读全文
posted @ 2021-06-07 17:03 慢乌龟 阅读(73) 评论(0) 推荐(0) 编辑
  2021年3月16日
该文被密码保护。 阅读全文
posted @ 2021-03-16 16:50 慢乌龟 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-03-16 16:33 慢乌龟 阅读(0) 评论(0) 推荐(0) 编辑