From 05a8e719d89dd4fb39adf1d10a87c5025c6fa788 Mon Sep 17 00:00:00 2001 From: "Areba Ullah (ullaha18)" Date: Tue, 15 Nov 2022 11:30:55 +0000 Subject: [PATCH] Add files via upload arebas bit of code --- chatbox.py | 2304 +--------------------------------------------------- 1 file changed, 13 insertions(+), 2291 deletions(-) diff --git a/chatbox.py b/chatbox.py index d0c6d26..0d35904 100644 --- a/chatbox.py +++ b/chatbox.py @@ -1,2291 +1,13 @@ -# use of code is to dectect selected words form users input to give helpful advice. - -# list of words that box is looking out for -term= ["unhappy","sad","depressed","unintrested"] -t2=["anxious","nervous","anxiety","croweds"] -t3 =["stressed","overworked","overwhelmed","tired","exhusted"] - -#allows user to input there probelm -problem =input("what is wrong. I will try and help you; ") -#splits users input into a list -words = problem.split()#the thing after -#this bit of code will change user input thats been converted into list to be lowercase -words_lower = [] -for word in words: - words_lower.append(word.lower()) -#will check if user input which broken into list to see if words from term in it to give advice -if term[0] in words_lower: - #advice given to user if they have used element 0 in the list - #element 0 being unhappy - print("") - print ("I am not a doctor so i will not diagnos you but the advice i would give you as you say you") - print ("say you are unhappy,you sholud spend more time woth family and friends as this pervents you") - print ("thinking about what makes you unhappy.Also i would advise if the thing that is making you") - print ("unhappy is a person you should let them know how ur feeling amd why you feel like this as ") - print ("it allowes you to take it off your chest gives the othe person a chance to change.") - #gives advice when element 0 is identifid first and all other elemnts form the different lists - if term[1] in words_lower: - print("You say you are sad, i would recomend that you ") - print("try and identify what is making you so sad and either remove it or them form your") - print("life,as if its not making you happy its not owrth keeping around. If it is a person") - print("that you can't remove I suggestyou either have a chat with them to let them know ") - print("that they are making you feel sad and try figuer out a way to fix the issue.") - print(" Otherwise my advise to you would be to distance yourself rather then fully cutting") - print("them off. As things that upset you are not worth keeping around and you should be ") - print("living your best life.") - if t2[0] in words_lower: - print("some of my adivce for being anxious would be that to speak to someone you trust") - print("about what is makin you so anxious, also you should do activites that distract") - print("you from worrying about your problems. for example like sports or cooking. ") - if t2[1] in words_lower: - print("some advice i would give you about being nervouse is that to breath in and out.") - print("Being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. If You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("My adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. As doing this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkign to someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoyi instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. If you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feelign consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround yourself") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to yourself") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - #term 0:1,2 - if term[2] in words_lower: - print("You say you feel depressed, i would recomend you go to a doctor as they can properly") - print("dignose you, but i can give you advice on how to reduce the feeling of sadness.") - print("firstly i would say is to go out on daily walks as fresh air is good for you") - print("also the to clean up your room and house as a clean space allows for a clear mind") - print("Don't always be alone as this allows for overthinking which can lead to you to think") - print("the worst. If non of these help i suggest you go to the doctors immediately!!") - if t2[0] in words_lower: - print("some of my adivce for bein anxious would be that to speak to someone you trust") - print("about what is makin you so anxious, also you should do activites that distract") - print("you from worrying about your problems. for example like sports or cooking. ") - if t2[1] in words_lower: - print("some advice i would give you about being nervouse is that to breath in and out") - print("being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves.My final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("I would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doing this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to tak e a day or two off") - print("and do what you enjoyi instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - # term 0:1,3 - if term[3]in words_lower: - print("The adivce i would give you is to try out new things as you might have outgrown your") - print("current intreset and they might no longer mentally challnge you.That is why you feel ") - print("unintrested.") - if t2[0] in words_lower: - print("some of my adivce for bein anxious would be that to speak to someone you trust") - print("about what is makin you so anxious, also you should do activites that distract") - print("you from worrying about your problems. for example like sports or cooking. ") - if t2[1] in words_lower: - print("some advice i would give you about being nervouse is that to breath in and out") - print("being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talking to someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoyi instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over comlicate things.") - if t3[3] in words_lower: - print("when feelign consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - #0:2 - if t2[0] in words_lower: - print("some of my adivce for bein anxious would be that to speak to someone you trust") - print("about what is makin you so anxious, also you should do activites that distract") - print("you from worrying about your problems. for example like sports or cooking. ") - if t2[1] in words_lower: - print("some advice i would give you about being nervouse is that to breath in and out") - print("being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to tak e a day or two off") - print("and do what you enjoyi instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - #0:2,1 - if t2[1] in words_lower: - print("some advice i would give you about being nervouse is that to breath in and out") - print("being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to tak e a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - #0:2,2 - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talking to someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to tak e a day or two off") - print("and do what you enjoyi instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - #0:2,3 - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to tak e a day or two off") - print("and do what you enjoyi instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - #0:3 - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to tak e a day or two off") - print("and do what you enjoyi instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try") - print("and share your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - #0:3,1 - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to tak e a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - #0:3,2 - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - #0:3,3 - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - #0:3,4 - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - - #gives adicve when elemnt 1 if element 1 is enetred first -elif term[1] in words_lower: - - #advice given to user if they have used element 1 in the list - #element 1 being sad - print("") - print("I am not a doctor so i will not diagnos you but the advice i would give you is") - print("You say you are sad, i would recomend that you ") - print("try and identify what is making you so sad and either remove it or them form your") - print("life,as if its not making you happy its not worth keeping around. If it is a person") - print("that you can't remove I suggestyou either have a chat with them to let them know ") - print("that they are making you feel sad and try figuer out a way to fix the issue.") - print("Otherwise my advise to you would be to distance yourself rather then fully cutting") - print("them off. As things that upset you are not worth keeping around and you should be ") - print("living your best life.") - if term[2] in words_lower: - print("You say you feel depressed, i would recomend you go to a doctor as they can properly") - print("dignose you, but i can give you advice on how to reduce the feeling of sadness.") - print("firstly i would say is to go out on daily walks as fresh air is good for you") - print("also the to clean up your room and house as a clean space allows for a clear mind") - print("Don't always be alone as this allows for overthinking which can lead to you to think") - print("the worst. If non of these help i suggest you go to the doctors immediately!!") - if t2[0] in words_lower: - print("some of my adivce for bein anxious would be that to speak to someone you trust") - print("about what is makin you so anxious, also you should do activites that distract") - print("you from worrying about your problems. for example like sports or cooking. ") - if t2[1] in words_lower: - print("some advice i would give you about being nervouse is that to breath in and out") - print("being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoyi instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if term[3]in words_lower: - print("The adivce i would give you is to try out new things as you might have outgrown your") - print("current intreset and they might no longer mentally challnge you.That is why you feel ") - print("unintrested.") - if t2[0] in words_lower: - print("some of my adivce for bein anxious would be that to speak to someone you trust") - print("about what is makin you so anxious, also you should do activites that distract") - print("you from worrying about your problems. for example like sports or cooking. ") - if t2[1] in words_lower: - print("some advice i would give you about being nervouse is that to breath in and out") - print("being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to tak e a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t2[0] in words_lower: - print("some of my adivce for bein anxious would be that to speak to someone you trust") - print("about what is makin you so anxious, also you should do activites that distract") - print("you from worrying about your problems. for example like sports or cooking. ") - if t2[1] in words_lower: - print("some advice i would give you about being nervouse is that to breath in and out") - print("being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to tak e a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t2[1] in words_lower: - print("some advice i would give you about being nervouse is that to breath in and out") - print("being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxity if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to tak e a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to tak e a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to tak e a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to tak e a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to tak e a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over comlicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") -elif term[2] in words_lower: - #advice given to user if they have used element 2 in the list - #element 2 being depressed - print("") - print("You say you feel depressed, i would recomend you go to a doctor as they can properly") - print("dignose you, but i can give you advice on how to reduce the feeling of sadness.") - print("firstly i would say is to go out on daily walks as fresh air is good for you") - print("also the to clean up your room and house as a clean space allows for a clear mind") - print("Don't always be alone as this allows for overthinking which can lead to you to think") - print("the worst. If non of these help i suggest you go to the doctors immediately!!") - if term[3] in words_lower: - print("The adivce i would give you is to try out new things as you might have outgrown your") - print("current intreset and they might no longer mentally challnge you.That is why you feel ") - print("unintrested.") - if t2[0]in words_lower: - print("some of my adivce for bein anxious would be that to speak to someone you trust") - print("about what is makin you so anxious, also you should do activites that distract") - print("you from worrying about your problems. for example like sports or cooking. ") - if t2[1] in words_lower: - print("some advice i would give you about being nervouse is that to breath in and out") - print("being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doing this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t2[0] in words_lower: - print("some of my adivce for bein anxious would be that to speak to someone you trust") - print("about what is makin you so anxious, also you should do activites that distract") - print("you from worrying about your problems. for example like sports or cooking. ") - if t2[1] in words_lower: - print("some advice i would give you about being nervouse is that to breath in and out") - print("being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoyi instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t2[1] in words_lower: - print("some advice i would give you about being nervouse is that to breath in and out") - print("being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoyi instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoyi instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoyi instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoyi instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoyi instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[3] in words_lower: - print("when feelign consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") -elif term[3]in words_lower: - - #advice given to user if they have used element 3 in the list - #element 3 being unintreseted - print("") - print ("I am not a doctor so i will not diagnos you but the advice i would give you is") - print("is to try out new things as you might have outgrown your") - print("current intreset and they might no longer mentally challnge you.That is why you feel ") - print("unintrested.") - if t2[0]in words_lower: - print("some of my adivce for bein anxious would be that to speak to someone you trust") - print("about what is making you so anxious, also you should do activites that distract") - print("you from worrying about your problems. for example like sports or cooking. ") - if t2[1] in words_lower: - print("some advice i would give you about being nervouse is that to breath in and out") - print("being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - print("calming music") - if t2[1] in words_lower: - print("some advice i would give you about being nervouse is that to breath in and out") - print("being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - print("calming music") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - print("calming music") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - print("calming music") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoyi instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - print("calming music") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - print("calming music") - if t3[3] in words_lower: - print("when feelign consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") -else: - #checks user input for the words in second term to give advice based on the topic - if t2[0] in words_lower: - print("") - print("I am not a doctor so i will not diagnos you but the advice i would give you is") - print("to speak to someone you trust,") - print("about what is making you so anxious, also you should do activites that distract") - print("you from worrying about your problems. for example like sports or cooking. ") - if t2[1] in words_lower: - print("some advice i would give you about being nervouse is that to breath in and out") - print("being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try. Share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - print("calming music") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t2[3] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - - elif t2[1] in words_lower: - print("") - print("I am not a doctor so i will not diagnos you but the advice i would give you is") - print("some advice i would give you about being nervouse is that to breath in and out") - print("being nervouse is normal expecially when trying something new. If you are always") - print("nervous then you should should try take up yoga or meditation as these will help") - print("calm your nervous.Another thing is that you can speak to someone about your what") - print("is making you nervouse as this will easies your nerves.") - if t2[2] in words_lower: - print("if you think you have anxiety i can not diagonse you, but i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - elif t2[2] in words_lower: - print("") - print("I am not a doctor so i will not diagnos you but the advice i would give you is that") - print("but if you think you have anxitey i can tell you to try") - print("out a few things which should help you feel les anxious.One of the main things ") - print("you can do is to try and get into a postive head space, to do this you should ") - print("think of things that make you happy, like going to your happy space.") - print("Also you can tak eup things such as yoga and meditation to help calm your") - print("nerves. my final peice of advice to help with having anxiety if to listen to some") - print("calming music") - if t2[3] in words_lower: - print("i would advise to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - - elif t2[3] in words_lower: - print("") - print("I am not a doctor so i will not diagnos you but the advice i would give you is") - print("to try stay way from croweds as they make you nervous") - print("and if its impossible to stay away from them listen to music that keeps you") - print("calm and tht you enjoy listening to, as it takes your attention away from the") - print("crowd. if You are unable to listen to music as you are in a working enviroment") - print("think about your happy place since it wil stop you from thinking about being in ") - print("the crowed") - if t3[0] in words_lower: - print("my adivice for you feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - - else: - if t3[0] in words_lower: - print("") - print("I am not a doctor so i will not diagnos you but the advice i would give you is") - print("if you are feeling stress would be that to stop overworking yourself") - print("and take a self care day where you have a hot bath watch tv and eat things you ") - print("enjoy. as doign this will help you relax and take your mind of whats making you") - print("stressed. Also if you can remove then thing thats making you stress and if that") - print("is not possiable talk to someone you trust as talkignto someone will help reduce") - print("your stress as you are no longer dealing with it alone") - if t3[1] in words_lower: - print("you say you are overworked. My best advice to you is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - elif t3[1] in words_lower: - print("") - print("I am not a doctor so i will not diagnos you but the advice i would give you is") - print("if you are overworked is to take a day or two off") - print("and do what you enjoy instead. If possiable try take a holiday out the country") - print("as this will help clear your mind. if you are unable to take a day off try share") - print("your responsablilites as this will reduces you work load.") - if t3[2] in words_lower: - print("my advice for you as you feel overwhelemed is to take a deep breaths when you ") - print("overwhelmed. I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - elif t3[2] in words_lower: - print("") - print("I am not a doctor so i will not diagnos you but the advice i would give you is") - print("to take a deep breaths when you overwhelmed.") - print("I would also say share what is making you feel this way when you") - print("feel like this as it will help you see things in perspective since our brains") - print("tend to over complicate things.") - if t3[3] in words_lower: - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - elif t3[3] in words_lower: - print("") - print("when feeling consently tried my best advice to you would be that try and remove") - print("yourself from what is making you feel like this, like if its a certain person") - print("distance your self as they may be draining making you feel constantly tried") - print("if its a place try and avoid it as much as possiable. If your unable to remove ") - print("what makes you tried then when you are home or away from it surround your self") - print("with what makes you happy as doing this will remind you that life can be fun") - if t3[4] in words_lower: - print("my advice for exhustion would to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - - elif t3[4] in words_lower: - print("") - print("I am not a doctor so i will not diagnos you but the advice i would give you is") - print("to try and take some time to your self") - print("whether that be a self care day or a hoilday abrode but to remove yourself from") - print("your current envoriment since this is what is draining your engery. Also do") - print("activites that make you feel good like basketball or football just somehthing") - print("active as this exersise will give you more energy.") - else: - print("sorry i can't help you with this probelm, i suggest you see a professional") - \ No newline at end of file +while answer == "no": + double_check = input("Are you sure?") + double_check.lower() + if double_check == "yes": + print("Thank you for considering to use the therapy chatbot. Goodbye!") + break + else: + intro() + +intro() +#this is another part +print("Remember to seek specialist advice if you are concerned about your mental wellbeing.") +print("Goodbye!")