Home  >  Article  >  Backend Development  >  How to use python to output constellation

How to use python to output constellation

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-06-26 16:46:439885browse

How to use python to output constellation

How to use python to output constellations? Here are the specific methods:

Ideas:

1. Define a get_constellation (month, date) function to Get date of birth.

2. Create dates and constellations to store the corresponding days and constellations respectively.

3. Use the if statement to determine whether the entered number of days is less than the number of days corresponding to the birth month minus one.

4. If yes, return the constellation corresponding to the month minus one. If not, return the constellation corresponding to the birth month.

5. Output the results input by the user.

Related recommendations: "Python Video Tutorial"

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) )

The results are as follows:

巨蟹

The above is the detailed content of How to use python to output constellation. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:What is for in pythonNext article:What is for in python