Reputation: 39
What are the strings that python can decode?
hi = "647361647361" lolly = hi.decode("hex") print lolly
What are other .decode functions that are present in python? other than ("hex")? is there a full list?
Upvotes: 0
Views: 365
Reputation: 4568
The full list for python 2.7.x is here in 7.8.3 and 7.8.4
Upvotes: 1