printing actual date

This commit is contained in:
frankknoll
2022-03-22 10:30:49 +01:00
parent 29a87e27eb
commit 6c41d0d72c

View File

@@ -15,6 +15,18 @@
"pd.set_option('mode.chained_assignment', 'raise')" "pd.set_option('mode.chained_assignment', 'raise')"
] ]
}, },
{
"cell_type": "code",
"execution_count": null,
"id": "e40d4c8d",
"metadata": {},
"outputs": [],
"source": [
"from datetime import datetime\n",
"\n",
"print(datetime.now().strftime(\"%d.%m.%Y, %H:%M:%S Uhr\"))\t"
]
},
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,