chr(i) 中文说明: 返回整数i对应的ASCII字符。与ord()作用相反。 参数x:取值范围[0, 255]之间的正数。 版本:该函数在python2和python3各个版本中都可用。不存在兼容性问题。 英文说明: Return a string of one character whose ASCII code is the integer i. For
Here are examples: a = '12y'# ch = ord(a) TypeError: ord() expected a character, but string of length 3 foundch = chr(ord(a[0])+1)print(ch) #2ch = chr(ord(a[2])+1)print(ch) #z#给字符串赋值没有太好的方式,切片是有效
对于ASCII以及CHR函数的用法,oracle给出的解释是: ASCII(x)gets the ASCII value of the character X, CHR() and ASCII() have the opposite effect. 即:ASCII函数是用于将字符转换成其相应的ASCII码,而CHR函数作用则恰好相反; 下面我来看一些简单的例子: SELEC