Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mooc-rr
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
f969076062e7e87452e3220760453367
mooc-rr
Commits
e4c01435
Commit
e4c01435
authored
Apr 28, 2020
by
f969076062e7e87452e3220760453367
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Nouvel essai
parent
3e6d5dc3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
5 deletions
+30
-5
exercice.ipynb
module2/exo4/exercice.ipynb
+30
-5
No files found.
module2/exo4/exercice.ipynb
View file @
e4c01435
...
...
@@ -9,7 +9,7 @@
},
{
"cell_type": "code",
"execution_count":
24
,
"execution_count":
102
,
"metadata": {},
"outputs": [
{
...
...
@@ -17,10 +17,10 @@
"output_type": "stream",
"text": [
"['\\ufeffFormulation', 'Référence', '70%C', '50%C', '30%C']\n",
"['Rc24h', '24.7
', '19.8', '14.5', '9.9
']\n",
"['Rc7j', '60.2
', '55.7', '39.4', '28.6
']\n",
"['Rc28j', '81.6
', '75.6', '55.8', '42.7
']\n",
"['Rc90j', '87.5
', '79.8', '61.2', '49.8
']\n"
"['Rc24h', '24.7
0', '19.80', '14.50', '9.90
']\n",
"['Rc7j', '60.2
0', '55.70', '39.40', '28.60
']\n",
"['Rc28j', '81.6
0', '75.60', '55.80', '42.70
']\n",
"['Rc90j', '87.5
0', '79.80', '61.20', '49.80
']\n"
]
}
],
...
...
@@ -35,6 +35,31 @@
" print(row)"
]
},
{
"cell_type": "code",
"execution_count": 104,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"24.70\n",
"60.20\n",
"81.60\n",
"87.50\n"
]
}
],
"source": [
"import csv\n",
"fname = \"DonneesExo.csv\"\n",
"with open(fname,newline='') as file:\n",
" reader = csv.DictReader(file)\n",
" for row in reader:\n",
" print(row['Référence'])"
]
},
{
"cell_type": "code",
"execution_count": 77,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment