-
Notifications
You must be signed in to change notification settings - Fork 0
/
Promise.py
15 lines (12 loc) · 1.02 KB
/
Promise.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
def Promise(path):
print('################# ! Welcom to the worlds best AutoTrading BOT !-> LUPapa ######################################################################')
print('## My name is LUPapa . Till now i am not perfect but as time goes i will mature to serve you and give you a life where you dont have to work ##\n\
## for money. In return you promise to use your time and money to server the world and make it a better place to live in........ Good Luck ! ##')
print('###############################################################################################################################################\n\n')
promise = input(
'Do you promise to use the money and time you generate through LUPapa for the betterment of the world? Y / N : ').upper()
if (promise == 'Y' or promise == 'YES'):
print('Thank you for your promise to try to make the word a better place !!\n\n\n')
else:
print('LUPapa is not for you !! GoodBye and best of luck !!')
exit(0)