百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 技术资源 > 正文

【Python】excel常用函数操作Python实现,办公入门首选

off999 2024-11-05 10:55 21 浏览 0 评论

常见的Excel函数,在Python中的如何实现:

  1. VLOOKUP: 可以使用merge或map函数来实现类似的功能。
  2. IF: 可以使用numpy库的where函数来实现类似的功能。
  3. SUMIF: 可以使用pandas的query函数来筛选数据,然后使用sum函数来计算总和。
  4. COUNTIF: 类似于SUMIF,可以使用query函数来筛选数据,然后使用count函数来计算数量。
  5. AVERAGEIF: 类似于SUMIF和COUNTIF,可以使用query函数来筛选数据,然后使用mean函数来计算平均值。
  6. INDEX & MATCH: 可以使用.loc或.iloc函数来实现类似的功能。
  7. RANK: 可以使用rank函数来实现类似的功能。
  8. CONCATENATE: 可以使用+运算符或str.cat函数来实现类似的功能。
  9. TEXT: 可以使用str.format函数来实现类似的功能。
  10. SUBSTITUTE: 可以使用str.replace函数来实现类似的功能。

代码如下:

1.VLOOKUP:可以使用merge或map函数来实现类似的功能。

import pandas as pd

# Let's assume we have two dataframes: df1 and df2
df1 = pd.DataFrame({
   'A': ['foo', 'bar', 'baz', 'qux'],
   'B': ['one', 'one', 'two', 'three'],
   'C': ['x', 'y', 'z', 'w'],
   'D': [1, 2, 3, 4]
})

df2 = pd.DataFrame({
   'B': ['one', 'two', 'three'],
   'E': ['apple', 'banana', 'cherry']
})

# Now we want to add column E from df2 to df1 based on the values in column B
df3 = pd.merge(df1, df2, on='B', how='left')

print(df3)

输出结果:


  1. IF:Python中的numpy库提供了一个where函数,可以用来实现类似的功能。例如:
import numpy as np

# Let's assume we have a dataframe df
df = pd.DataFrame({
   'A': [1, 2, 3, 4],
   'B': [5, 6, 7, 8]
})

# We want to create a new column C that contains the value from column A if the value in column B is greater than 6, otherwise it contains the value from column B
df['C'] = np.where(df['B'] > 6, df['A'], df['B'])

print(df)
  1. SUMIF:可以使用pandas的query函数来筛选数据,然后使用sum函数来计算总和。例如:
# Let's assume we have a dataframe df
df = pd.DataFrame({
   'A': [1, 2, 3, 4],
   'B': ['yes', 'no', 'yes', 'no']
})

# We want to sum the values in column A where the corresponding value in column B is 'yes'
sum_if = df.query('B == "yes"')['A'].sum()

print(sum_if)
  1. COUNTIF:类似于SUMIF,可以使用query函数来筛选数据,然后使用count函数来计算数量。例如:
# Let's assume we have a dataframe df
df = pd.DataFrame({
   'A': [1, 2, 3, 4],
   'B': ['yes', 'no', 'yes', 'no']
})

# We want to count the number of values in column A where the corresponding value in column B is 'yes'
count_if = df.query('B == "yes"')['A'].count()

print(count_if)
  1. AVERAGEIF:类似于SUMIF和COUNTIF,可以使用query函数来筛选数据,然后使用mean函数来计算平均值。例如:
# Let's assume we have a dataframe df
df = pd.DataFrame({
   'A': [1, 2, 3, 4],
   'B': ['yes', 'no', 'yes', 'no']
})

# We want to calculate the average of values in column A where the corresponding value in column B is 'yes'
average_if = df.query('B == "yes"')['A'].mean()

print(average_if)


  1. INDEX & MATCH:可以使用.loc或.iloc函数来实现类似的功能。例如:
# Let's assume we have a dataframe df
df = pd.DataFrame({
   'A': [1, 2, 3, 4],
   'B': ['a', 'b', 'c', 'd']
})

# We want to get the value in column A where the corresponding value in column B is 'c'
value = df.loc[df['B'] == 'c', 'A'].iloc[0]

print(value)
  1. RANK:可以使用rank函数来实现类似的功能。例如:
# Let's assume we have a dataframe df
df = pd.DataFrame({
   'A': [1, 2, 3, 4],
   'B': [4, 3, 2, 1]
})

# We want to get the rank of values in column B
df['C'] = df['B'].rank()

print(df)
  1. CONCATENATE:可以使用+运算符或str.cat函数来实现类似的功能。例如:
# Let's assume we have a dataframe df
df = pd.DataFrame({
   'A': ['Hello', ' ', 'World'],
   'B': ['!', '', '']
})

# We want to concatenate the values in column A and column B
df['C'] = df['A'] + df['B']
# or
df['C'] = df['A'].str.cat(df['B'])

print(df)
  1. TEXT:可以使用str.format函数来实现类似的功能。例如:
# Let's assume we have a dataframe df
df = pd.DataFrame({
   'A': [1, 2, 3, 4],
   'B': [0.1, 0.2, 0.3, 0.4]
})

# We want to format the values in column B as text with two decimal places
df['C'] = df['B'].apply(lambda x: '{:.2f}'.format(x))

print(df)
  1. SUBSTITUTE:可以使用str.replace函数来实现类似的功能。例如:
# Let's assume we have a dataframe df
df = pd.DataFrame({
   'A': ['Hello World', 'Goodbye World']
})

# We want to replace 'World' with 'Python' in column A
df['B'] = df['A'].str.replace('World', 'Python')

print(df)

相关推荐

面试官:来,讲一下枚举类型在开发时中实际应用场景!

一.基本介绍枚举是JDK1.5新增的数据类型,使用枚举我们可以很好的描述一些特定的业务场景,比如一年中的春、夏、秋、冬,还有每周的周一到周天,还有各种颜色,以及可以用它来描述一些状态信息,比如错...

一日一技:11个基本Python技巧和窍门

1.两个数字的交换.x,y=10,20print(x,y)x,y=y,xprint(x,y)输出:102020102.Python字符串取反a="Ge...

Python Enum 技巧,让代码更简洁、更安全、更易维护

如果你是一名Python开发人员,你很可能使用过enum.Enum来创建可读性和可维护性代码。今天发现一个强大的技巧,可以让Enum的境界更进一层,这个技巧不仅能提高可读性,还能以最小的代价增...

Python元组编程指导教程(python元组的概念)

1.元组基础概念1.1什么是元组元组(Tuple)是Python中一种不可变的序列类型,用于存储多个有序的元素。元组与列表(list)类似,但元组一旦创建就不能修改(不可变),这使得元组在某些场景...

你可能不知道的实用 Python 功能(python有哪些用)

1.超越文件处理的内容管理器大多数开发人员都熟悉使用with语句进行文件操作:withopen('file.txt','r')asfile:co...

Python 2至3.13新特性总结(python 3.10新特性)

以下是Python2到Python3.13的主要新特性总结,按版本分类整理:Python2到Python3的重大变化Python3是一个不向后兼容的版本,主要改进包括:pri...

Python中for循环访问索引值的方法

技术背景在Python编程中,我们经常需要在循环中访问元素的索引值。例如,在处理列表、元组等可迭代对象时,除了要获取元素本身,还需要知道元素的位置。Python提供了多种方式来实现这一需求,下面将详细...

Python enumerate核心应用解析:索引遍历的高效实践方案

喜欢的条友记得关注、点赞、转发、收藏,你们的支持就是我最大的动力源泉。根据GitHub代码分析统计,使用enumerate替代range(len())写法可减少38%的索引错误概率。本文通过12个生产...

Python入门到脱坑经典案例—列表去重

列表去重是Python编程中常见的操作,下面我将介绍多种实现列表去重的方法,从基础到进阶,帮助初学者全面掌握这一技能。方法一:使用集合(set)去重(最简单)pythondefremove_dupl...

Python枚举类工程实践:常量管理的标准化解决方案

本文通过7个生产案例,系统解析枚举类在工程实践中的应用,覆盖状态管理、配置选项、错误代码等场景,适用于Web服务开发、自动化测试及系统集成领域。一、基础概念与语法演进1.1传统常量与枚举类对比#传...

让Python枚举更强大!教你玩转Enum扩展

为什么你需要关注Enum?在日常开发中,你是否经常遇到这样的代码?ifstatus==1:print("开始处理")elifstatus==2:pri...

Python枚举(Enum)技巧,你值得了解

枚举(Enum)提供了更清晰、结构化的方式来定义常量。通过为枚举添加行为、自动分配值和存储额外数据,可以提升代码的可读性、可维护性,并与数据库结合使用时,使用字符串代替数字能简化调试和查询。Pytho...

78行Python代码帮你复现微信撤回消息!

来源:悟空智能科技本文约700字,建议阅读5分钟。本文基于python的微信开源库itchat,教你如何收集私聊撤回的信息。[导读]Python曾经对我说:"时日不多,赶紧用Python"。于是看...

登录人人都是产品经理即可获得以下权益

文章介绍如何利用Cursor自动开发Playwright网页自动化脚本,实现从选题、写文、生图的全流程自动化,并将其打包成API供工作流调用,提高工作效率。虽然我前面文章介绍了很多AI工作流,但它们...

Python常用小知识-第二弹(python常用方法总结)

一、Python中使用JsonPath提取字典中的值JsonPath是解析Json字符串用的,如果有一个多层嵌套的复杂字典,想要根据key和下标来批量提取value,这是比较困难的,使用jsonpat...

取消回复欢迎 发表评论: