用python将小写字母转换为unicode编码

python的string标准库有一个常量string.ascii_lowercase,表示所有小写英文字母常量。python的标准库函数ord()可以返回一个字符的unicode编码。请编写程序,输出所以小写英文字母及其对应的unicode编码。该程序不需要输入数据,程序的输出格式如下:
a 97
b 98
c 99
d 100
e 101
f 102
g 103
h 104
i 105
j 106
k 107
l 108
m 109
n 110
o 111
p 112
q 113
r 114
s 115
t 116
u 117
v 118
w 119
x 120
y 121
z 122

for i in string.ascii_lowercase:
    print(i,ord(i))