Javatpoint Logo
Javatpoint Logo

Python Program to convert Hexadecimal String to Decimal String

In Python, it is very easy to convert elements comparing with other programming languages. In this tutorial, we will discuss different methods for converting hexadecimal string to decimal string.

Method 1: By using int() function

The int() function is used for performing these types of tasks, the user can add an argument (16) in this function for converting the hexadecimal string to the base 16, and it will convert the string into an integer at the same time.

Example:

Output:

The Hexadecimal string is: F
The converted hexadecimal string into decimal string is: 15

Method 2: by using ast.literal_eval() method

The user can use the literal evaluation function for converting hexadecimal string to decimal string. The literal evaluation function can predict the base and convert the number string into the decimal string.

Example:

Output:

The Hexadecimal string is: 0xF
The converted hexadecimal string into decimal string is: 15

Method 3: By using dictionary

The user can use the dictionary for converting hexadecimal string to decimal string. They can create a dictionary that contains all the predefined values of the hexadecimal table. After this, the user can apply the "for" loop and convert the hexadecimal string value into the decimal string format.

Example:

Input:

Output:

The converted hexadecimal string into decimal string is:  174

Method 4: By using while Loop

The user can use the while loop for converting the hexadecimal string into a decimal string. First, the user has to import the hexadecimal string value. Then, they have to take 3 variables: "k", "counts," and "j" and all equal to "0". After that, they have to apply the "while" loop containing all the conditions. And at last, the user can check the value of "k". If the value of "k" is equal to "0", the user can print the value of "counts"; otherwise, it will be an invalid input.

Example:

Input:

Output:

The converted hexadecimal string into decimal string is:  255






Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA