-
Notifications
You must be signed in to change notification settings - Fork 0
/
Galactic_Astrology_only
65 lines (63 loc) · 1.81 KB
/
Galactic_Astrology_only
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
day = int(input("Enter the Day of the month of your birth (eg. 14, 26, 2): "))
month = input("Enter month of birth (e.g. march, july etc): ")
if month == 'december':
if (day < 17):
astro_sign = 'WoW! You are the new sign, Ophiuchus!'
else:
astro_sign = 'Sweet Talking Sagittarius'
elif month == 'january':
if (day < 18):
astro_sign = 'Sassy Sagittarius'
else:
astro_sign = 'Corporate Capricorn'
elif month == 'february':
if (day < 15):
astro_sign = 'Call the Shots Capricorn'
else:
astro_sign = 'Airy Aquarius'
elif month == 'march':
if (day < 11):
astro_sign = 'Aimlessly Aquarius'
else:
astro_sign = 'Peculiar Pisces'
elif month == 'april':
if (day < 18):
astro_sign = 'Practically Perfect Pisces'
else:
astro_sign = 'Allusive Aries'
elif month == 'may':
if (day < 13):
astro_sign = 'Always Right Aries'
else:
astro_sign = 'Tolerant Taurus'
elif month == 'june':
if (day < 19):
astro_sign = 'Taurus the Tank'
else:
astro_sign = 'Golden Gemini'
elif month == 'july':
if (day < 21):
astro_sign = 'Great Mate Gemini'
else:
astro_sign = 'Comforting Cancer'
elif month == 'august':
if (day < 9):
astro_sign = 'Can be Crabby Cancer'
else:
astro_sign = 'Lean on Leo'
elif month == 'september':
if (day < 15):
astro_sign = 'Leading Leo'
else:
astro_sign = 'Virtuous Virgo'
elif month == 'october':
if (day < 30):
astro_sign = 'Virgin (my arse) Virgo'
else:
astro_sign = 'Loving Libra'
elif month == 'november':
if (day < 22):
astro_sign = 'Liberal Libra'
else:
astro_sign = 'Sophisticated and Sexiest of all Scorpio'
print("Your Galactic Astrological sign is :",astro_sign)