Python Forum
Convert hex value into string
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Convert hex value into string
#4
What do you mean by "get hex value is: FF"? Python lets you use hex notation when writing a string literal.
x = 0xff
And you can print an integer using hex notation a number of ways.
print(hex(x))
print(f'{x:x}')
print(f'{x:X}')
Or do you want to "get" a hex value, as in using input() to enter a hex value? Unfortunately I get an error when I try to do this:
x = int(input('Enter a number in hex format '))
Then error is informative "ValueError: invalid literal for int() with base 10: '0xFF'. So I tried this:
x = int(input('Enter a number in hex format '), 16)
This works if I enter 'ff', 'FF', '0xff' or '0xFF'
Reply


Messages In This Thread
Convert hex value into string - by Sancho_Pansa - Dec-22-2020, 04:03 PM
RE: Convert hex value into string - by jefsummers - Dec-22-2020, 05:05 PM
RE: Convert hex value into string - by bowlofred - Dec-22-2020, 05:31 PM
RE: Convert hex value into string - by Sancho_Pansa - Dec-23-2020, 08:10 AM
RE: Convert hex value into string - by deanhystad - Dec-22-2020, 06:38 PM
RE: Convert hex value into string - by Sancho_Pansa - Dec-23-2020, 07:51 AM
RE: Convert hex value into string - by bowlofred - Dec-23-2020, 08:02 AM
RE: Convert hex value into string - by Sancho_Pansa - Dec-23-2020, 08:32 AM
RE: Convert hex value into string - by Sancho_Pansa - Dec-23-2020, 08:54 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  convert string to float in list jacklee26 6 1,932 Feb-13-2023, 01:14 AM
Last Post: jacklee26
  how to convert tuple value into string mg24 2 2,359 Oct-06-2022, 08:13 AM
Last Post: DeaD_EyE
  Convert string to float problem vasik006 8 3,425 Jun-03-2022, 06:41 PM
Last Post: deanhystad
  Convert a string to a function mikepy 8 2,555 May-13-2022, 07:28 PM
Last Post: mikepy
Question How to convert string to variable? chatguy 5 2,442 Apr-12-2022, 08:31 PM
Last Post: buran
  Convert string to int Frankduc 8 2,496 Feb-13-2022, 04:50 PM
Last Post: menator01
  Convert string to path using Python 2.7 tester_V 10 6,473 Nov-20-2021, 02:20 PM
Last Post: snippsat
  Convert each element of a list to a string for processing tester_V 6 5,362 Jun-16-2021, 02:11 AM
Last Post: tester_V
Question convert unlabeled list of tuples to json (string) masterAndreas 4 7,483 Apr-27-2021, 10:35 AM
Last Post: masterAndreas
  Convert String of an int array to a Numpy array of ints mdsousa 5 5,708 Apr-08-2021, 08:00 PM
Last Post: mdsousa

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020