Skip to content

Commit

Permalink
Fix code style issues with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Aug 11, 2024
1 parent c90b8d6 commit 28791d2
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 21 deletions.
2 changes: 1 addition & 1 deletion projects/Blind Auction/art.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
/_________\\
.-------------.
/_______________\\
'''
'''
43 changes: 23 additions & 20 deletions projects/Blind Auction/main.py
Original file line number Diff line number Diff line change
@@ -1,31 +1,34 @@
from replit import clear
#HINT: You can call clear() to clear the output in the console.

# HINT: You can call clear() to clear the output in the console.

from art import logo

print(logo)

bids = {}
bidding_finished = False


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}.")
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}.")


while not bidding_finished:
name = input("What is your name? ")
bid = int(input("What is your bid? $"))
bids[name] = bid

should_continue = input("Are there any other bidders? Type 'yes' or 'no': ").lower()
if should_continue == "no":
find_highest_bidder(bids)
bidding_finished = True
elif should_continue == "yes":
clear()

name = input("What is your name? ")
bid = int(input("What is your bid? $"))
bids[name] = bid

should_continue = input("Are there any other bidders? Type 'yes' or 'no': ").lower()
if should_continue == "no":
find_highest_bidder(bids)
bidding_finished = True
elif should_continue == "yes":
clear()

0 comments on commit 28791d2

Please sign in to comment.