-
Notifications
You must be signed in to change notification settings - Fork 9
/
blind_auction.py
50 lines (43 loc) · 1.46 KB
/
blind_auction.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
import os
logo = '''
___________
\ /
)_______(
|"""""""|_.-._,.---------.,_.-._
| | | | | | ''-.
| |_| |_ _| |_..-'
|_______| '-' `'---------'` '-'
)"""""""(
/_________\\
.-------------.
/_______________\\
'''
print(logo)
# creating empty dict
bids = {}
# is bidding finished
bidding_finished = False
# find the highest bidder function
def find_highest_bidder(bidding_record):
highest_bid = 0
winner = ""
for bidder in bidding_record:
bid_amount = bidding_record[bidder]
if bid_amount > highest_bid:
highest_bid = bid_amount
winner = bidder
print(f"The winner is {winner} with a bid of ${highest_bid} .")
# run until bidding finished
while not bidding_finished:
name = input("What is your name? \n => ")
price = int(input("What is your bid? \n => "))
bids[name] = price
should_continue = input(
"Are there any other bidders? Type 'yes' or 'no' \n => ")
if should_continue == "no":
bidding_finished = True
find_highest_bidder(bids)
elif should_continue == "yes":
os.system('cls' if os.name == 'nt' else 'clear')
else:
print("Invalid Inputs!")