-
Notifications
You must be signed in to change notification settings - Fork 0
/
pick-a-psycolor.py
76 lines (72 loc) · 3.12 KB
/
pick-a-psycolor.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#Choose a color for your brand logo
print("|:·:·PICK-A-PSYCOLOR·:·:|")
print("\nWelcome!\n\nChoose a color that relates to an attribute according to psychology:\n")
color={1:'1. Red.',2:'2. Blue.',3:'3. Green.',4:'4. Yellow.',5:'5. Orange.',
6:'6. Purple.',7:'7. Pink.',8:'8. Brown.',9:'9. White.',10:'10. Black.'}
for value in color:
print(color[value])
color=int(input("\nSelect the number of your color: "))
if color == 1:
print("\nThe color 'Red' is related to the following attributes:\n")
att=['·Passion.','·Energy.','·Heat.','·Dinamism.']
for x in att:
print(x)
print("\nIt's usually used for: Transportation, Technology & Food.")
elif color == 2:
print("\nThe color 'Blue' is related to the following attributes:\n")
att=['·Calm.','·Honesty.','·Professionality.','·Compromise.']
for x in att:
print(x)
print("\nIt's usually used for: Technology, Healthcare & Finance.")
elif color == 3:
print("\nThe color 'Green' is related to the following attributes:\n")
att=['·Nature.','·Ethics.','·Growth.','·Organic.']
for x in att:
print(x)
print("\nIt's usually used for: Natural Resources, Energy & Food.")
elif color == 4:
print("\nThe color 'Yellow' is related to the following attributes:\n")
att=['·Joy.','·Positive.','·Kindness.','·Brightness.']
for x in att:
print(x)
print("\nIt's usually used for: Energy, Household & Food.")
elif color == 5:
print("\nThe color 'Orange' is related to the following attributes:\n")
att=['·Youth.','·Fun.','·Modern.','·Innovation.']
for x in att:
print(x)
print("\nIt's usually used for: Energy, Food & Natural Resources.")
elif color == 6:
print("\nThe color 'Purple' is related to the following attributes:\n")
att=['·Luxury.','·Wisdom.','·Dignity.','·Mistery.']
for x in att:
print(x)
print("\nIt's usually used for: Clothes, Technology & Airlines.")
elif color == 7:
print("\nThe color 'Pink' is related to the following attributes:\n")
att=['·Female.','·Fun.','·Tenderness.','·Romance.']
for x in att:
print(x)
print("\nIt's usually used for: Women Products, Clothes & Food.")
elif color == 8:
print("\nThe color 'Brown' is related to the following attributes:\n")
att=['·Male.','·Earth.','·Rural.','·Simple.']
for x in att:
print(x)
print("\nIt's usually used for: Men Products, Clothes & Natural Resources.")
elif color == 9:
print("\nThe color 'White' is related to the following attributes:\n")
att=['·Purity.','·Neatness.','·Nobleness.','·Naiveness.']
for x in att:
print(x)
print("\nIt's usually used for: Household, Healthcare & Technology.")
elif color == 10:
print("\nThe color 'Black' is related to the following attributes:\n")
att=['·Value.','·Prestige.','·Power.','·Death.']
for x in att:
print(x)
print("\nIt's usually used for: Technology, Clothes & Real Estate.")
else:
print("\nYour choice isn't available...")
print("\nThank you for using PICK-A-PSYCOLOR.")
print("\nHopefully, this will help you choose a color for your brand.")