From 62b57d9dfb2f2defd483ae70d0e5a37a35f9d39b Mon Sep 17 00:00:00 2001 From: Benjamin Bohard Date: Tue, 8 Jan 2013 14:47:16 +0100 Subject: [PATCH] relecture de la formation --- python/formation/type.txt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/python/formation/type.txt b/python/formation/type.txt index 974ae43..2c1d1b2 100644 --- a/python/formation/type.txt +++ b/python/formation/type.txt @@ -592,13 +592,10 @@ compatible, ça marche. Le typage est fort, on demande des types TypeError: cannot concatenate 'str' and 'int' objects >>> addition_forte("1", 4) - TypeError: cannot concatenate 'str' and 'int' objects - - >>> addition_faible("a", "b") 5 -Remarquons que `addition_faible` renvoie forcément un type `int` tandis -que `addition_forte` peut renvoyer un autre type, ceci est dû au +Remarquons que `addition_forte` renvoie forcément un type `int` tandis +que `addition_faible` peut renvoyer un autre type, ceci est dû au polymorphisme paramétrique. .. todo:: en python un type et une classe, c'est la même chose