mirror of
https://github.com/kristoferssolo/School.git
synced 2025-10-21 20:10:38 +00:00
16 lines
324 B
Python
16 lines
324 B
Python
# Author - Kristiāns Francis Cagulis
|
|
# Date - 05.01.2022
|
|
# Title - csv homework
|
|
|
|
import pandas as pd
|
|
|
|
|
|
def main():
|
|
data = pd.read_csv("auto_imports_mainits.csv")
|
|
for column in data.columns:
|
|
if data[column].isnull().sum() > 0:
|
|
print(f"{column} {str(data[column].isnull().sum())}")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main() |