python代码 打印字符A~Z

# 打印字符A~Z


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


for i in range(65,91):

    print(chr(i))

猜你喜欢

转载自blog.csdn.net/chen1042246612/article/details/81144679