#Python数据分析与挖掘实战

Python if判断语句

if判断条件的结束以“:”结束myage=10;yourage=12;if myage<yourage:  print(“你比我大!”);...
开发笔记 ·2023-02-02

python批量重命名不同的文件名

importosimporttimeimportsysimportimportlib#该方法适用于对文件进行指定名字命名path="D:\测试重命名"file_list=os.listdir(path)n=0new_name_list=open("C:\Users\xiaoxiaohao\Desktop\名字.txt"...

python下载器

一个python下载器,#!/bin/python3#author:lidawei#create:2016-07-11#version:1.0#功能说明:#从指定的URL将文件取回本地#####################################################importhttp.clie...
开发笔记 ·2022-12-30

python语言中的保留字符

参数描述andexecnotassertfinallyorbreakforpassclassfromprintcontinueglobalraisedefifreturndelimporttryelifinwhileelseiswithexceptlambdayield...

python命令pip list

查看安装python版本windowscmd中:pythonPython3.7.4(tags/v3.7.4:e09359112e,Jul82019,20:34:20)[MSCv.191664bit(AMD64)]onwin32Type"help","copyright","credits"or"license"form...
开发笔记 ·2022-12-13

Python 3.9.10和Python 3.10.2版本发布

ython3.10.2是Python3.10的第2个维护版本,主要解决了在使用Cython时可能发生的内存泄漏。内存泄漏由Cython代码的某些函数调用中的少量恒定字节组成。虽然在大多数情况下,这不是很明显,但对于长时间运行的应用程序和某些使用模式来说,还是非常有影响的。Python3.9.10是Python3.9的一...

python 将txt内容写入excel

#!/usr/bin/envpython#-*-coding:utf-8-*importosimportxlrdimportxlwtimportdatetimeimportrefromutils.XUtilsimportXUtilsdefcreate_and_write_data_to_excel(p_file_nam...

python str与bytes之间的转换

#bytesobjectb=b"example"#strobjects="example"#strtobytesbytes(s,encoding="utf8")#bytestostrstr(b,encoding="utf-8")#analt...

大数据分析工具有哪些

BI工具分为开源BI工具和商业BI工具两大类。开源BI工具有:Superset、Redash、Metabase、CBoard、Davinci、SpagoBI、Pentaho等等;商业BI工具有:FineBI、QlikView、Tableau、PowerBI、SmartBI、QuickBI等等。...
开发笔记 ·2022-10-18

数据分析有哪些软件工具

常用的数据分析工具有:Tableau、smartbi、Chart.js、Raw、Datawrapper、Excel。...

python如何根据sin值求角度?

python的内置数学模块math模块中就包含了三角函数和反三角函数。但是python的三角函数和反三角函数都是面向弧度的,而不是角度。python进行弧度与角度之间的相互转换。1、角度转弧度importmathmath.radians(x)2、弧度转角度importmathmath.degrees(x)python中...

python随机读取目录文件

importargparseparser=argparse.ArgumentParser()parser.add_argument('num',type=int,help="imgnumberstorandom")args=parser.parse_args()importrandomimportospath="/ho...

Python 常用string函数

字符串中字符大小写的变换1.str.lower()  //小写>>>'SkatE'.lower()'skate'2.str.upper()  //大写>>>'SkatE'.upper()'...
开发笔记 ·2022-04-25

Python下载并解压zip文件

importzipfileimportrequestsurl="http://www.51dev.com/ids.zip"path="ids.zip"r=requests.get(url)try:withopen(path,"wb")ascode:code.write(r.content)zip_file=zipfil...

Python安装包官网下载慢怎么办

可以用其他的下载软件下载,比如迅雷...
首页上一页...1415161718...下一页尾页