Vous êtes ici : Accueil Asilax'blog Blog 2009 Python Agility: be careful ;)

Python Agility: be careful ;)

— Mots-clés associés :

Python is a very powerful dynamic programming language. Python is fun, yes!, but be careful it allows to do hair-raising thinks !!!

silvio@serv:~$ python
Python 2.6.2 (release26-maint, Apr 19 2009, 01:56:41)
[GCC 4.3.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> tmp = True
>>> True = False
>>> False = tmp
>>> True
False
>>> False
True
>>>
>>> file
<type 'file'>
>>> file = 'Hi!'
>>> file
'Hi!'
>>> 
Liens
Actions sur le document