How can i extract a uuid inpython? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can i extract a uuid inpython?

im a gamer and i need to know how i can convert a uuid in to text or numbers, example:- c411fcb2-c59c-4e51-b054-9f20fc30d2d5 so how i can convert it to alphabet or numbers or extract it to english. thanks

20th Nov 2019, 7:01 AM
Sushrut Shidhaye
Sushrut Shidhaye - avatar
1 Answer
+ 3
UUID string is a hashed string built from only the creator (or the code assigned the hashing task) knows what. The purpose of hashing was to have minimum possibility (or none at all) to have the original string back. It's a one way ticket flight, no turning back. Though a lot of people have tried to reverse the process, hashing was never designed equal to encrypting, hashing algorithms doesn't have support for reverse processing as it commonly does with encryption.
20th Nov 2019, 7:35 AM
Ipang