[Python-ideas] int('0x3241fca1')

Terry Reedy tjreedy at udel.edu
Thu Feb 6 22:41:45 CET 2014


On 2/6/2014 5:24 AM, Ram Rachum wrote:
> What do you think about letting the `int` constructor automatically
> understand the number type without specifying base if given a prefix, so
> int('0x3414fa') would immediately work without specifying a base of 16?

In addition to int(string, 0):

 >>> number = '0x3414fa'
 >>> eval(number)
3413242

-- 
Terry Jan Reedy



More information about the Python-ideas mailing list