>>> odr(s)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'odr' is not defined
>>> ord(s)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: ord() expected a character, but string of length 5 found
>>> ord('1')
49
复制代码