import pandas as pd

# 读取 CSV 文件
df = pd.read_csv("Nowcoder.csv", dtype=object)

# 检查每列是否有空值
print(df.isnull().any())