python中的字符

python中的字符

如果要处理python的字符,python又没有字符类型,只有字符串。

比如c可以'a'+1变成'b’

python中可以怎末做?

多谢各位。
>>> a = "a"
>>> chr(ord(a)+1)
'b'
多谢了!