for label in df.columns:
if label != 'country' and label != "continent":
df[label] = pd.to_numeric(df[label])
ValueError: Unable to parse string "All" at position 0

for label in df.columns:
if label != 'country' and label != "continent":
df[label] = pd.to_numeric(df[label])
ValueError: Unable to parse string "All" at position 0