【Python】输出12个星座

原理:利用Unicode编码

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

【Python】输出12个星座

相关推荐