【Python】输出12个星座

原理:利用Unicode编码

for i in range(12):
    print(chr(9800+i),end="")

原文地址:https://www.cnblogs.com/HGNET/p/12114451.html