5 lines
80 B
Python
5 lines
80 B
Python
#!/usr/bin/env python
|
|
# -*- coding: latin-1 -*-
|
|
|
|
u = 'abcdé'
|
|
print(ord(u[-1]))
|