【Python】输出12个星座

xinhao 2019-12-29

原理:利用Unicode编码

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

【Python】输出12个星座

相关推荐