Answers for "how to remove empty cells in csv using pandas"

3

pandas drop empty columns

DataFrameName.dropna(axis=1, how='all', inplace=True)
Posted by: Guest on March-12-2021
1

filter blank rows python csv

def no_blank(fd):
    try:
        while True:
            line = next(fd)
            if len(line.strip()) != 0:
                yield line
    except:
        return
#Read the CSV file.
with open('campaign_monthly_report.csv', 'r') as csv_file:
    csv_reader = csv.DictReader(no_blank(csv_file))
Posted by: Guest on June-19-2021

Code answers related to "how to remove empty cells in csv using pandas"

Python Answers by Framework

Browse Popular Code Answers by Language