码迷,mamicode.com
首页 >  
搜索关键字:mac book python 编写第一个 fabric 测试样例    ( 160943个结果
Mac OS m1 下安装Gradle
1. 下载、解压 1.1 下载地址 https://gradle.org 往下翻 选择版本 1.2 解压到指定目录 2. 配置环境变量 2.1 编辑环境文件 vi ~/.bash_profile #GRADLE GRADLE_HOME=/Users/qinxy/software/gradle-4.9 ...
分类:系统相关   时间:2021-06-24 18:36:23    阅读次数:0
Mac下MySQL卸载方法
Mac下MySQL卸载方法 由于某种情况下,需要删除mysql。 mac下mysql的DMG格式安装内有安装文件,但没有卸载文件 查了一下,原来得手动去删。把关键点记述在这里,以供查阅。 先停止所有mysql服务。 sudo rm /usr/local/mysql sudo rm -rf /usr/ ...
分类:数据库   时间:2021-06-24 18:32:36    阅读次数:0
How to add the custom nuget feed to TeamCity build?
The NuGet package sources are configured through Visual Studio, but they're stored in a per-user configuration file, found at c:\Users\$USER\AppData\R ...
分类:其他好文   时间:2021-06-24 18:32:12    阅读次数:0
unittest相关内容
unittest相关内容 一、什么是unittest unittest是Python单元测试框架,类似于JUnit框架。 unittest中有4个重要的概念:test fixture, test case, test suite, test runner Testcase: 一个TestCase的实 ...
分类:其他好文   时间:2021-06-24 18:12:57    阅读次数:0
【Python】用matplotlib画条形图
1.简单图形 数据: 代码: import pandas as pd import matplotlib.pyplot as plt catering = r'C:\Users\xxx\Desktop\data\课题.xls' df = pd.read_excel(catering) plt.rcP ...
分类:编程语言   时间:2021-06-24 18:08:55    阅读次数:0
Python-字符串相关面试题及答案
""" 1.1交换 已知 a的值为”hello”,b的值为”world”,如何交换a和b的值? 得到a的值为”world”,b的值为”hello” """ a = "hello" b = "world" a,b = b,a print(a) print(b) """ 1.2回文 回文的定义:”回文” ...
分类:编程语言   时间:2021-06-24 18:06:51    阅读次数:0
coco数据集格式
COCO 的jeson 文件: "images": [{"file_name": "811000171.jpg", "height": 720, "width": 1280, "id": 811000171}, {"file_name": "811000131.jpg", "height": 720 ...
分类:其他好文   时间:2021-06-24 18:06:36    阅读次数:0
一、创建一个项目
学习内容来自于《Python编程从入门到实践》中项目三的第18章第一部分:建立项目。 1.要建立一个虚拟环境。题主使用的是Pycharm,新建工程时默认创建了虚拟环境,此部分不用管。 2.新建一个项目,此处命名为:Web_test 3.建立虚拟环境。注意,需要在此项目处打开命令行,使用Pycharm ...
分类:其他好文   时间:2021-06-24 18:05:36    阅读次数:0
从csv中找到匹配信息
#!/usr/bin/pythonimport csv NewSN = "" # find good SN 给出MAC,寻找对应的SNwith open("DIGI_MAC_28_5_2021_40units.csv", newline='') as csvfile: csv_reader = cs ...
分类:其他好文   时间:2021-06-24 18:03:24    阅读次数:0
buuctf 刷题记录 [第三章 web进阶]Python里的SSRF
buuctf 刷题记录 [第三章 web进阶]Python里的SSRF 初探 绕过 详情参考: ip限制绕过 ...
分类:编程语言   时间:2021-06-24 17:56:47    阅读次数:0
160943条   上一页 1 ... 19 20 21 22 23 ... 16095 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!