How can I convert a base 36 value to base 10?
Base 36 value: lgzl0
We need to convert this value to 36064548.
Are there any built-in functions to convert base values?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
I think your base is 36 and not 26 (numbers from 0 to 9 and letters from a to z) as there is a ‘z’ and a ‘0’ (zero) in the number you want to convert. You can use the int function:
>>> int("lgzl0", base=36)
36064548
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0