-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauction.py
31 lines (24 loc) · 832 Bytes
/
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
import auction_art
print(auction_art.logo)
def find_highest_bidder(bidding_dictionary):
winner = ""
highest_bid = 0
max(bidding_dictionary)
for bidder in bidding_dictionary:
bid_amount = bidding_dictionary[bidder]
if bid_amount > highest_bid:
highest_bid = bid_amount
winner = bidder
print(f"The winner is {winner} with a bid of ${highest_bid}.")
bids = {}
continue_bidding = True
while continue_bidding:
name = input("What is your name?: ")
price = int(input("What is your bid?: $"))
bids[name] = price
should_continue = input("Are there any other bidders? Type 'yes' or 'no'. \n").lower()
if should_continue == "no":
continue_bidding = False
find_highest_bidder(bids)
elif should_continue == "yes":
print("\n" * 20)