码迷,mamicode.com
首页 >  
搜索关键字:python if else    ( 156427个结果
华为机试题 成绩排名
简介 对cmp的理解能力 常规题 code #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; struct Student{ int idx; int n ...
分类:其他好文   时间:2021-06-28 21:01:31    阅读次数:0
图像的仿射变换
转自:https://zhuanlan.zhihu.com/p/80852438 https://blog.csdn.net/hty1053240123/article/details/51992398 一,概述 图像的几何变换主要包括:平移、缩放、旋转、仿射、透视等等。图像变换是建立在矩阵运算基础 ...
分类:其他好文   时间:2021-06-28 20:46:12    阅读次数:0
ubuntu 常用命令
最近在gpu上做实验比较频繁,故记录下常用命令,以便复制粘贴 1. 后台运行py文件,并保存日志 nohup python -u prepro_feats_gpu.py> frats.out 2>&1 & frats.out 为保存的日志文件名 2.查看日志文件 tail -f frats.out ...
分类:系统相关   时间:2021-06-28 20:45:56    阅读次数:0
用最少数量的箭引爆气球
题目链接:用最少数量的箭引爆气球 题目描述: 题解: class Solution { public: static bool cmp(vector<int> &a, vector<int> &b) //按右边界排序 { return a[1] < b[1]; } int findMinArrowS ...
分类:其他好文   时间:2021-06-28 20:44:14    阅读次数:0
前中后序遍历
前序遍历: result = [] st = [root] while st: node = st.pop(-1) if node.right: st.append(node.right) if node.left: st.append(node.left) result.append(node.v ...
分类:其他好文   时间:2021-06-28 20:43:55    阅读次数:0
第一章 Airflow基本原理
一、Airflow简介 airflow是Airbnb开源的一个用python编写的调度工具,项目于2014年启动,2015年春季开源,2016年加入Apache软件基金会的孵化计划,使用Python编写实现的任务管理、调度、监控工作流平台。 Airflow 是基于DAG(有向无环图)的任务管理系统, ...
分类:其他好文   时间:2021-06-28 20:39:57    阅读次数:0
OSError: mysql_config not found
解决python 安装 第三方包时报OSError: mysql_config not found的错误 Ubuntu sudo apt-get install libmysqlclient-dev centos7 yum install mysql-devel gcc gcc-devel pyth ...
分类:数据库   时间:2021-06-28 20:20:31    阅读次数:0
【物理应用】基于matlab二维边界单元法计算腐蚀电位【含Matlab源码 523期】
一、简介 基于matlab二维边界单元法计算腐蚀电位 二、源代码 clear; fid=fopen('input.dat','r'); indat=fscanf(fid,'%g%g%d%g',[4,inf]); indat=indat'; xb=indat(:,1); yb=indat(:,2); ...
分类:其他好文   时间:2021-06-28 20:17:15    阅读次数:0
使用pyinstaller打包生成exe
layout: post title: 将tkinter打包生成exe subtitle: date: 2020-05-30 author: Dapenson header-img: img/post-bg-universe.jpg catalog: true tags: - Python - tk ...
分类:其他好文   时间:2021-06-28 20:10:21    阅读次数:0
[技术项目3]--流量回放项目总结
1、背景 最近做了一个测试项目-流量回放。我主要负责前端的工作。 该项目主要功能是回放线上的接口数据,用以进行自动化测试,毕竟线上的数据大,场景多。拿到这批数据测试用例后,无论是用来压测还是用来进行接口自动化价值都是很大的 流量回放的价值:通过记录线上流量,在开发或者测试环境回放,来发现系统是否能够 ...
分类:其他好文   时间:2021-06-28 20:01:35    阅读次数:0
156427条   上一页 1 ... 11 12 13 14 15 ... 15643 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!