Première execution

parent b5fb2a60
...@@ -26,12 +26,12 @@ ...@@ -26,12 +26,12 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": 7,
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
"NomFichentree = \"work/Journal/Readme_Journal.md\"\n", "NomFichentree = \"../../journal/Readme.md\"\n",
"NomFichsortie = \"work/module2/exo4/Info_Journal.csv\"\n", "NomFichsortie = \"./Info_Journal.csv\"\n",
"\n", "\n",
"with open(NomFichsortie, \"w\", encoding='utf-8') as sortie:\n", "with open(NomFichsortie, \"w\", encoding='utf-8') as sortie:\n",
" with open(NomFichentree, \"r\", encoding='utf-8') as entree:\n", " with open(NomFichentree, \"r\", encoding='utf-8') as entree:\n",
...@@ -44,6 +44,13 @@ ...@@ -44,6 +44,13 @@
" for mot in listemots:\n", " for mot in listemots:\n",
" sortie.write(f\"{date};{mot}\\n\")" " sortie.write(f\"{date};{mot}\\n\")"
] ]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
} }
], ],
"metadata": { "metadata": {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment