tankop1 / template_ai

A simple template for an AI assistant
0 stars 0 forks source link

Chance modification #2

Open langly28 opened 3 years ago

langly28 commented 3 years ago

this is an example of a modification that can tell what are the chances of ___ happening

This is a thing that will have the personal AI to tell you the chance of something happening

chance = input()

if chance == "lightning": print("1 in a million or 1/1m")

elif chance == "Lightning": print("1 in a million or 1/1m")

elif chance == "winning the lottery": print("1 in One hundred seventy five million or 1/175m")

elif chance == "Winning the lottery": print("1 in One hundred seventy five million or 1/175m")

elif chance == "chance of tornado": print("The is a 1/2300 chance of a tornado happening in the next second")

elif chance == "Chance of tornado": print("The is a 1/2300 chance of a tornado happening in the next second")

elif chance == "dying from covid": print("There is a 1/50 chance of dying from the Coronavirus")

elif chance == "Dying from covid": print("There is a 1/50 chance of dying from the Coronavirus")

elif chance == "Dying from Covid": print("There is a 1/50 chance of dying from the Coronavirus")

elif chance == "dying from Covid": print("There is a 1/50 chance of dying from the Coronavirus")

elif chance == "living from covid": print("There is a 49/50 chance to live from the Coronavirus")

elif chance == "Living from covid": print("There is a 49/50 chance to live from the Coronavirus")

elif chance == "Living from Covid": print("There is a 49/50 chance to live from the Coronavirus")

elif chance == "living from Covid": print("There is a 49/50 chance to live from the Coronavirus")

elif chance == "chance of meatballs": print("That is not a question of Chance, That is a movie")

elif chance == "Chance of meatballs": print("That is not a question of Chance, That is a movie")

elif chance == "Chance of Meatballs": print("That is not a question of Chance, That is a movie")

elif chance == "chance of Meatballs": print("That is not a question of Chance, That is a movie")

else: print("This is probably not available to find. Instead, you can try:") print("chance of tornado") print("lightning") print("winning the lottery") print("dying from covid") print(" ") print(" ") print(" ") print(" ") print("If none of these work, rememberm, the system is cap-sensitive!")

-COLEMAN R.

tankop1 commented 3 years ago

Great job Coleman! Keep it up!