python中字符与数字的转换

  与C等语言不同,在python中,是不区分字符与字符串的。像C等语言,字符用单引号封装,字符串用双引号封装;而python中,单引号和双引号都表示字符串。虽然如此,Python中依旧提供了字符转数字的方法。
ord(…)
ord(c) -> integer
Return the integer ordinal of a one-character string.
该函数用于将单字符的字符串转化为对应字符的unicode码值。
该函数的对应的相反函数为chr和unichr
chr(int) -> str
Return a string of one character whose ASCII code is the integer i.
该函数用于将数字转化为对应的字符串。
unicode
Return the Unicode string of one character whose Unicode code is the integer i.
python中字符与数字的转换_第1张图片

你可能感兴趣的:(python中字符与数字的转换)