Answer:
Cognitive rational emotive behavior therapy
Explanation:
Cognitive rational emotive behavior therapy is another form of psychotherapy which help a client in their self-defeating thought and feelings. In this therapy, there are challenges in rational thought and feelings. In this therapy, the therapist helps a person to change their irrational belief thought and emotions into rational thought and beliefs. This theory helps you find out how irrational thoughts distress the life of a person.
Thus here in the above context, The therapist is using cognitive rational emotive therapy to change your irrational belief, thought and emotions into rational, belief, thought and emotions.
ummm question where is the chart so i can answer just send meh a link to it and ill answer
Answer:
Dictionary
Explanation:
Most Data types do hold only one value as an element, python's Dictionary holds key/value pair. In Python, DICTIONARIES are unordered collection of data. These data are used to store values, for instance in the question given, writing the script that will make use of user input contact names and their associated phone numbers; DICTIONARY is ideal for storing and accessing these associated values.
When creating a python's Dictionary it is worthy of note that dictionary keys are case sensitive. Dictionary, in Python can be created by imputing sequence of elements within - {}, and then you separate {} by ‘comma’. For example;
# Creating contact names
Dict = {}
print("contact name: ")
print(Dict)