simple_js
View source code
ASCII The hexadecimal code is converted to decimal
It doesn't seem difficult to do mental arithmetic 55,56,54,79,115,69,·········· That still works python bar
pycharm
python3
s="\x35\x35\x2c\x35\x36\x2c\x35\x34\x2c\x37\x39\x2c\x31\x31\x35\x2c\x36\x39\x2c\x31\x31\x34\x2c\x31\x31\x36\x2c\x31\x30\x37\x2c\x34\x39\x2c\x35\x30"
c=s.split(" ") print(c) # \x2c It's a comma , str.split(str="", num=string.count(str))
str -- Separator , The default is all empty characters , Include spaces , Line break (\n), Tab (\t) etc . num -- Segmentation times . The default is -1, That is to separate all . print
str.split( ); # Space as separator , contain \n print str.split(' ', 1 ); # Space as separator , Split into two
python3
s=[55,56,54,79,115,69,114,116,107,49,50] for i in s: print(chr(i),end="")
chr Returns the corresponding integer ASCII character .
print (chr(48), chr(49), chr(65),chr(97)) 0,1,A,a print (chr(0x30), chr(0x31),
chr(0x61)) 0,1,a
ord Returns the ASCII numerical value
ord('a') 97
Technology
Daily Recommendation