Python is a very powerful dynamic programming langage. 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!'
>>>