码迷,mamicode.com
首页 >  
搜索关键字:mac python    ( 155474个结果
python 读取excel方法(最大行数:1048576)
首先需要导入 import openpyxl 1、打开excel,并且获取sheet 1 inwb=openpyxl.load_workbook(Path_generate) 2 Sheetnames=inwb.get_sheet_names() 3 ws=inwb.get_sheet_by_nam ...
分类:编程语言   时间:2021-06-25 16:43:54    阅读次数:0
leetcode-python-二叉搜索树中第K小的元素
逐行入栈,排序后直接输出第k小的数据 # Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self. ...
分类:编程语言   时间:2021-06-25 16:32:21    阅读次数:0
Anaconda常规用法
Anaconda常规用法 ①显示已安装的包名和版本号 conda list ②conda版本 conda --version ③更新conda至最新版本 conda update conda ④查看conda帮助信息 conda --help conda -h ⑤卸载conda Linux或者mac ...
分类:其他好文   时间:2021-06-25 16:31:09    阅读次数:0
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
155474条   上一页 1 ... 18 19 20 21 22 ... 15548 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!