I'm trying to convert a number to base 11 in python. But it is giving me the wrong output or may be the syntax I'm using is incorrect.
print(int('120',11))
In http://extraconversion.com, it is saying that base 10 to base 11 conversion of number 120 is AA. But the above python statement is giving me output 143. Where am I doing it wrong?