Horoscope Terminal Game (feedback please!)

Hi! So i made a terminal game that take in your zodiac and gives you your horoscope in return. It’s a super simple program, but hey it works!!

Good work!

To reduce the length of, and improve the readability of, your program, consider converting the laundry list of conditionals into a dictionary retrieval. W3Schools’ Python Dictionaries page does a good job explaining the basics if you’re not quite there yet in your learning.

What happens if the user enters something that you don’t have a horoscope for? Try adding a default condition (“else” block). What about if I type in “GEMINI” or “gemini” (capitalization inconsistency)? Try cleaning up the user input prior to use (convert all to lowercase, and match your conditions).

Welcome to the community. :slight_smile: