Home > Backend Development > Python Tutorial > How to use python to output constellation

How to use python to output constellation

爱喝马黛茶的安东尼
Release: 2019-06-26 16:46:43
Original
9953 people have browsed it

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) )
Copy after login

The results are as follows:

巨蟹
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template