>> ma_variable = "Ceci est une chaine de caractères"
>>> A = "Hello World" >>> B = 12 >>> type(A) <type 'str'> >>> type(B) <type 'int'> >>> A=B >>> type(A) <type 'int'>