怎麼利用python輸出星座?以下帶給大家具體方法:
想法:
1、定義一個get_constellation(month,date)函數,來取得出生日期。
2、建立一個dates和constellations分別來儲存對應的日和星座。
3、用if語句判斷輸入的日數是否小於出生月份減一所對應的日數。
4、如果是就回到月份減一所對應的星座,不是就回到出生月份所對應的星座。
5、輸出使用者輸入的結果。
相關推薦:《Python影片教學》
def get_constellation(month, date): dates = (21, 20, 21, 21, 22, 22, 23, 24, 24, 24, 23, 22) constellations = ("摩羯", "水瓶", "双鱼", "白羊", "金牛", "双子", "巨蟹", "狮子", "处女", "天秤", "天蝎", "射手", "摩羯") if date < dates[month-1]: return constellations[month-1] else: return constellations[month] print (get_constellation(7, 10) )
結果如下:
巨蟹
以上是怎麼利用python輸出星座的詳細內容。更多資訊請關注PHP中文網其他相關文章!