我使用python从网站解析了一个表数据,该网站表中的NULL值在python中被提取为N / A。
df=pd.DataFrame(columns=range(0,9), index=[0])
但是,在使用df.isnull().sum()
分析存储的数据以查找空值时,没有显示空值。但它们存在于数据集中。
我认为null值已被解析为字符串。如何使这些值计为null。 谢谢。
答案 0 :(得分:2)
以下应为快速解决方法:
def handler403(request, exception, template_name='403.html'):
response = render_to_response('403.html', {})
response.status_code = 403
return response