From b9d3db553358f4eb104926f4c2abfb20e723888f Mon Sep 17 00:00:00 2001 From: Armel Vallet <armel.vallet@etu.univ-amu.fr> Date: Fri, 10 Jan 2025 13:08:50 +0100 Subject: [PATCH] added class Tablerte choco --- .idea/examen.iml | 2 +- .idea/misc.xml | 2 +- main.py | 5 ++++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.idea/examen.iml b/.idea/examen.iml index d0876a7..9b7f4da 100644 --- a/.idea/examen.iml +++ b/.idea/examen.iml @@ -2,7 +2,7 @@ <module type="PYTHON_MODULE" version="4"> <component name="NewModuleRootManager"> <content url="file://$MODULE_DIR$" /> - <orderEntry type="inheritedJdk" /> + <orderEntry type="jdk" jdkName="Python 3.10 (TP EDO)" jdkType="Python SDK" /> <orderEntry type="sourceFolder" forTests="false" /> </component> </module> \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index ce38091..f6302c5 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,5 +3,5 @@ <component name="Black"> <option name="sdkName" value="Python 3.10 (TP5)" /> </component> - <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.10 (TP5)" project-jdk-type="Python SDK" /> + <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.10 (TP EDO)" project-jdk-type="Python SDK" /> </project> \ No newline at end of file diff --git a/main.py b/main.py index e75154b..2c24399 100644 --- a/main.py +++ b/main.py @@ -1 +1,4 @@ -print("hello world") \ No newline at end of file +class TabletteChocolat: + def __init__(self, m, n): + self.m = m + self.n = n -- GitLab