1 Respuesta
+ 2
You'll have less hassle with Python :)
Python ist strongly typed, but dynamic: there is no need to
provide a data type for your variables.
Moreover, it does not make ay difference whether you write
a = 'X' or # one letter variables are a bad idea ;-)
b = "X"
type(a) # gives str
type(b) # gives str too