small improvements and better handling of edge cases
This commit is contained in:
@@ -141,7 +141,7 @@
|
||||
"df['Nachname'] = df['Nachname'].str.strip()\n",
|
||||
"df['rower'] = df.apply(evaluate_rower,axis=1,args=('rower',))\n",
|
||||
"df['Telefonnummer'] = df.apply(extract_tel,axis=1,args=('Telefonnummer',))\n",
|
||||
"df['Foto'] = df['Foto'].str.replace(' ','-').fillna('-')"
|
||||
"df['Foto'] = df['Foto'].fillna('-').str.replace(' ','-').fillna('-')"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -277,7 +277,7 @@
|
||||
],
|
||||
"metadata": {
|
||||
"kernelspec": {
|
||||
"display_name": ".venv (3.13.7)",
|
||||
"display_name": ".venv (3.14.4)",
|
||||
"language": "python",
|
||||
"name": "python3"
|
||||
},
|
||||
@@ -291,7 +291,7 @@
|
||||
"name": "python",
|
||||
"nbconvert_exporter": "python",
|
||||
"pygments_lexer": "ipython3",
|
||||
"version": "3.13.7"
|
||||
"version": "3.14.4"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
|
||||
Reference in New Issue
Block a user