Fundamentals 5 min read

How to Use Python Pandas to Locate First and Last Non‑Zero Values in Excel

This tutorial demonstrates how to use Python's pandas library to read an Excel file, identify the first and last non‑zero entries in each row, and output their values and column positions, complete with code examples and performance tips.

Python Crawling & Data Mining
Python Crawling & Data Mining
Python Crawling & Data Mining
How to Use Python Pandas to Locate First and Last Non‑Zero Values in Excel

1. Introduction

A fan in a Python community asked how to find the first and last non‑zero numbers in each row of an Excel sheet and determine their column indices. The following guide shares a solution using Python.

2. Implementation

The method uses Pandas to read the Excel file and iterate over rows with df.itertuples(). For each row, zero values are filtered out, and the first and last non‑zero values together with their column positions are recorded.

# code by: 小小明大佬
import pandas as pd
df = pd.read_excel('Data.xlsx', header=1, usecols="B:K")
result = []
for row in df.itertuples():
    code = row.Index
    row = pd.Series(row[1:])
    row.index += 1  # make index start from 1
    row = row[row != 0]
    s_num, s_i, e_num, e_i = [pd.NA] * 4
    if row.shape[0] > 0:
        s_num, s_i, e_num, e_i = row.iat[0], row.index[0], row.iat[-1], row.index[-1]
    result.append([code, s_num, s_i, e_num, e_i])
result = pd.DataFrame(result, columns=["产品编码", "起始数", "起始位置", "结束数", "结束位置"])
print(result)

Running the script produces the expected table:

Note that df.itertuples() returns namedtuple rows, which is faster than df.iterrows() and thus preferred for large datasets.

Additional solutions include an Excel formula approach and a WPS macro implementation, both illustrated with screenshots.

3. Summary

This article presents three ways to extract the first and last non‑zero values from Excel using Python, pure Excel formulas, and macro code, providing practical code snippets and performance advice to help readers solve similar data‑processing tasks.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

PythonExcelpandasdata-analysisitertuplescode-tutorial
Python Crawling & Data Mining
Written by

Python Crawling & Data Mining

Life's short, I code in Python. This channel shares Python web crawling, data mining, analysis, processing, visualization, automated testing, DevOps, big data, AI, cloud computing, machine learning tools, resources, news, technical articles, tutorial videos and learning materials. Join us!

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.