Comments on: Astuces Python en vrac http://sametmax.com/astuces-python-en-vrac/ Du code, du cul Mon, 28 Oct 2019 11:54:55 +0000 hourly 1 https://wordpress.org/?v=4.9.7 By: Sam http://sametmax.com/astuces-python-en-vrac/#comment-176911 Tue, 08 Mar 2016 16:26:17 +0000 http://sametmax.com/?p=1463#comment-176911 Il va falloir poser cette question sur indexerror.net :)

]]>
By: ast http://sametmax.com/astuces-python-en-vrac/#comment-176908 Tue, 08 Mar 2016 15:30:04 +0000 http://sametmax.com/?p=1463#comment-176908 Avec les float, en plus du nan, inf, -inf, il y a aussi le zéro négatif

1/float(‘-inf’)

-0.0

Bon ça ne doit pas souvent servir à quelque chose

]]>
By: ast http://sametmax.com/astuces-python-en-vrac/#comment-176907 Tue, 08 Mar 2016 14:54:32 +0000 http://sametmax.com/?p=1463#comment-176907 Bonjour,

Je n’ai pas trouvé de fichier *.pth sous le répertoire C:\Program Files\Python35-32 de mon PC. Pourtant le path doit bien être stocké quelque part sur le PC non ? Pour les répertoires/packages perso, il y a la variable d’environnement $PYTHONPATH mais pour les répertoires de l’install comme C:\Program Files\Python35-32\\lib’ etc c’est où ?

]]>
By: manatlan http://sametmax.com/astuces-python-en-vrac/#comment-1034 Fri, 03 Aug 2012 16:06:45 +0000 http://sametmax.com/?p=1463#comment-1034 Enorme ! ça fait 10ans que je mange du python.
Je viens d’apprendre l’existence de “.pth” ;-)
ça va me changer la vie ;-)

]]>
By: Sam http://sametmax.com/astuces-python-en-vrac/#comment-1032 Fri, 03 Aug 2012 15:44:29 +0000 http://sametmax.com/?p=1463#comment-1032 J’adore la parti batman de wat.

J’avais essayé de faire une version Python, mais j’ai pas pu trouver asser de trucs complètement incohérents. C’est un langage assez bien foutu.

]]>
By: Christophe Simonis http://sametmax.com/astuces-python-en-vrac/#comment-1031 Fri, 03 Aug 2012 15:35:06 +0000 http://sametmax.com/?p=1463#comment-1031 python -o enleve aussi les __doc__

]]>
By: Luigi http://sametmax.com/astuces-python-en-vrac/#comment-1030 Fri, 03 Aug 2012 15:12:43 +0000 http://sametmax.com/?p=1463#comment-1030 ce qui évide => ce qui évite ;o)

]]>
By: Encolpe DEGOUTE http://sametmax.com/astuces-python-en-vrac/#comment-1028 Fri, 03 Aug 2012 14:57:19 +0000 http://sametmax.com/?p=1463#comment-1028 Et puis zut, c’est vendredi : Wat !
J’attends la version Python pour les courageux (ou les procrastinateurs ;-))

]]>
By: Encolpe DEGOUTE http://sametmax.com/astuces-python-en-vrac/#comment-1027 Fri, 03 Aug 2012 14:49:02 +0000 http://sametmax.com/?p=1463#comment-1027 Dans le théorie des nombres 1 + infini = infini et infini + 1 = infini + 1
=> Nombre Ordinal

]]>
By: Sam http://sametmax.com/astuces-python-en-vrac/#comment-1026 Fri, 03 Aug 2012 14:34:37 +0000 http://sametmax.com/?p=1463#comment-1026 Je corrige ça et je rajoute un petit warning.

Je savais pas qu’on avait nan en Python. Et en plus:

>>> float('nan')
nan
>>> a = float('nan')
>>> a + 1
nan
]]>