Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9253269
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T11:10:35+00:00 2026-06-18T11:10:35+00:00

I want to convert a string like this into an int: s = ‘A0

  • 0

I want to convert a string like this into an int: s = 'A0 00 00 00 63'. What’s the easiest/best way to do that?

For example '20 01' should become 8193 (2 * 16^3 + 1 * 16^0 = 8193).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T11:10:36+00:00Added an answer on June 18, 2026 at 11:10 am

    Use int() with either str.split():

    In [31]: s='20 01'
    
    In [32]: int("".join(s.split()),16)
    Out[32]: 8193
    

    or str.replace() and pass the base as 16:

    In [34]: int(s.replace(" ",""),16)
    Out[34]: 8193
    

    Here both split() and replace() are converting '20 01' into '2001':

    In [35]: '20 01'.replace(" ","")
    Out[35]: '2001'
    
    In [36]: "".join('20 01'.split())
    Out[36]: '2001'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string that looks like this: 9/1/2009. I want to convert it
I want to convert a String into KeyEvent to do something like this :
I want to convert an xml element like this: <asin>​B0013FRNKG​</asin>​ to string in javascript
I want to convert a string like 2012-03-08T00:00:00+01:00 into Date.. I tried to use
i want to convert this string into DateTime. Tue Aug 19 15:05:05 +0000 2008
I have strings like 84, 03 etc. that I want to convert to Date
I want to convert String to Date in different formats. For example, I am
How can I convert a string of bytes into an int in python? Say
I'm looking for a way to convert a string that contains a character escape
Say if I have a string like this char foo[10] = %r1%r2; I want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.