python实现根据月份和日期得到星座的方法
2018-09-26 20:02
阅读:516
本文实例讲述了python实现根据月份和日期得到星座的方法。分享给大家供大家参考。具体实现方法如下:
#计算星座 def Zodiac(month, day): n = (u摩羯座,u水瓶座,u双鱼座,u白羊座,u金牛座,u双子座,u巨蟹座,u狮子座,u处女座,u天秤座,u天蝎座,u射手座) d = ((1,20),(2,19),(3,21),(4,21),(5,21),(6,22),(7,23),(8,23),(9,23),(10,23),(11,23),(12,23)) return n[len(filter(lambda y:y<=(month,day), d))%12] Zodiac(3,14)
希望本文所述对大家的Python程序设计有所帮助。
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:python实现根据月份和日期得到星座的方法
文章链接:http://soscw.com/index.php/essay/17793.html
文章标题:python实现根据月份和日期得到星座的方法
文章链接:http://soscw.com/index.php/essay/17793.html
评论
亲,登录后才可以留言!