Developed a Python console application that simulates a blind auction, prompting multiple bidders to enter their names and bids without revealing others, to then announce the winner.
Features:
Prompts each bidder for their name and bid amount, Stores the bids in a `bids` dictionary, Determines the winner with the highest bid, Includes error handling for invalid inputs
Key Learnings:
This project provided practical experience in handling user input, working with dictionaries, using basic algorithmic design, and working with external modules.