mirror of
https://github.com/kristoferssolo/School.git
synced 2025-10-21 20:10:38 +00:00
7 lines
234 B
Python
7 lines
234 B
Python
import pandas
|
|
|
|
dati = pandas.read_csv('auto_imports_mainits.csv')
|
|
|
|
for index, element in enumerate(dati.isnull().sum()):
|
|
if element != 0: print(f"| {dati.columns[index]}" + " " * (25 - len(str(dati.columns[index]))) + f"{element}")
|