mirror of
https://github.com/kristoferssolo/School.git
synced 2025-10-21 20:10:38 +00:00
17 lines
322 B
Python
17 lines
322 B
Python
# Author - Kristiāns Francis Cagulis
|
|
# Date - 05.01.2022
|
|
# Title - csv
|
|
|
|
import pandas as pd
|
|
|
|
|
|
def main():
|
|
data = pd.read_csv("auto_imports_mainits.csv")
|
|
blank = data.isnull().any().sum()
|
|
print(f"There are empty spaces in {blank} columns")
|
|
|
|
print(data.columns[data.isnull().any()])
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main() |