-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.py
More file actions
81 lines (57 loc) · 2.61 KB
/
library.py
File metadata and controls
81 lines (57 loc) · 2.61 KB
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
77
78
def again():
print("Do you want to continue",
"press 1 to continue",
"press 2 for EXIT")
b=int(input("enter no:"))
if(b==1):
index()
elif(b==2):
print("THANKS FOR VISITING")
def index():
print("Press 1 for BOOK: THE PSYCHOLOGY OF MONEY")
print("Press 2 for BOOK: THE POWER OF YOUR SUBCONSCIOUS MIND")
print("press 3 for BOOK: RICH DAD POOR DAD")
print("press 4 for BOOK: THINK AND GROW RICH")
a=int(input())
if(a==1):
print("name:Book 1: The psychology of money",
"author: MORGAN HOUSEL",
"description: The book deals with the complex relationship",
"individual have with money emphasizing that financial success ",
"is more about behaviour than knowledge."
"price:- $5")
again()
elif(a==2):
print("name:Book 2: The Power Of Your Subconscious Mind",
"author: JOSEPH MURPHY",
"description: A self help book that explore the potential",
"and influence the subconcious mind can have on our lives,"
"price:-$6")
again()
elif(a==3):
print("name:Book 3: Rich Dad Poor Dad",
"author: Robert T. Kiyosaki",
"relesed_date: 1997"
"description: its a personal finance book that contrast the ",
"financial philosophies of two father figure."
"the book emphasizes financial education,investing and",
"wealth building strategies,advocating for assets like real state",
"business,and stock over traditional employement."
"price:-$10")
again()
elif(a==4):
print("name:Book 4: Think and Grow Rich",
"author: NAPOLEON HILL",
"relesed_date: 1937",
"description: book explore the principle of success and wealth accumulation."
"Based on Hill's study of over 500 successful individualls,including",
"Andrew Carnegie,Henry Ford."
"The book outline 13 key principle such as dezire, faith , persistance",
"specialzed knowledge. it emphasize the power of mindset , goal setting",
"and taking action to personal and financial success.")
again()
elif(a==5):
print("book 5")
again()
print("____WELCOME TO SKILL CIRCLE____")
index()