python代码 打印字符A~Z

# 打印字符A~Z


print(ord("A"),ord("Z"))


for i in range(65,91):

    print(chr(i))

你可能感兴趣的:(python代码 打印字符A~Z)