摘要: 1.数据结构 input_dict = { 'A': { 'B': { 'C': {}, 'D': {} }, 'E': { 'F': {} } }, 'G': { 'H': {}, 'I': {} } } 2. Python 代码 def convert_dict_to_numbers(input 阅读全文
posted @ 2023-12-05 16:00 林暗惊风 阅读(47) 评论(0) 推荐(0) 编辑
摘要: input_data = [{ 'title': '试验干预中止和参与者退出试验', 'children': [ { 'title': '试验干预中止', 'children': [ { 'title': '永久中止试验干预的标准', 'children': [] }, { 'title': '暂时 阅读全文
posted @ 2023-12-05 15:42 林暗惊风 阅读(23) 评论(0) 推荐(0) 编辑
摘要: # Import librariesfrom Bio import pairwise2from Bio.Seq import Seq # Creating sample sequencesseq1 = Seq("TGTGACTA")seq2 = Seq("CATGGTCA") # Finding s 阅读全文
posted @ 2023-11-13 10:57 林暗惊风 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 停留在Paused in debugger解决办法 第一步:打开设置 第二步:找到红圈中的两个选项 按如下图选择后关闭,重新按F12就没有了 转自: https://blog.csdn.net/qq_51653817/article/details/125961405 阅读全文
posted @ 2023-06-19 10:55 林暗惊风 阅读(1721) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="container"> <!-- <el-row> <el-col :span="3"> <el-menu default-active="2" class="el-menu-vertical-demo" @open="handleOpen" @clos 阅读全文
posted @ 2023-04-03 14:40 林暗惊风 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 00001. 查看谷歌浏览器的版本 设置-->帮助-->关于Chrome 00002. 00003. 进入网站下载 https://npmmirror.com 选择 Selenium 镜像: https://npmmirror.com/mirrors/selenium/ 对应我们浏览器的版本下载Se 阅读全文
posted @ 2022-12-07 16:17 林暗惊风 阅读(124) 评论(0) 推荐(0) 编辑
摘要: import requests def find_children(data, elements): children_found = [] for items in data[elements]: children_found.append(items['name']) if items['chi 阅读全文
posted @ 2022-07-20 14:16 林暗惊风 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 场景 适合字典中的 key 与 表中的字段可以对应 源数据 data_list = [{"name":"张三","age":20,"email":"13456@qq.com","addr":"北京"}, {"name":"李四","age":22,"email":"52525@qq.com","ad 阅读全文
posted @ 2022-06-29 11:07 林暗惊风 阅读(274) 评论(0) 推荐(0) 编辑
摘要: import pandas as pd """ 1. 将字典数据写入Excel key value 为值,列"""data = {'a': 1, 'b': 2, 'c': 3, 'd': 4} def save_to_excel(data): """ 将字典数据存入Excel """ pf = pd 阅读全文
posted @ 2022-06-21 16:29 林暗惊风 阅读(2283) 评论(0) 推荐(0) 编辑
摘要: mysql -uroot -ppassword mydb < myfile.sql.gz 阅读全文
posted @ 2022-06-13 14:10 林暗惊风 阅读(139) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示