1 Star 0 Fork 0

Python程序设计/192223zpy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
xingzuo.py 447 Bytes
一键复制 编辑 原始数据 按行查看 历史
192223张鹏宇 提交于 2020-04-01 20:47 . xingzuo
def constellation(month, date):
d = (21,20,21,21,22,22,23,24,24,24,23,22)
n = ('摩羯座','水瓶座','双鱼座','白羊座','金牛座','双子座','巨蟹座','狮子座','处女座','天秤座','天蝎座','射手座','摩羯座')
if date < d[month-1]:
return n[month-1]
else:
return n[month]
month = input("month:")
date = input("date:")
print(month + "." + date + " is " +constellation(int(month),int(date)))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/python_programming/zpy192223.git
[email protected]:python_programming/zpy192223.git
python_programming
zpy192223
192223zpy
master

搜索帮助