This repository contains a Python implementation of a Silent Auction program. The program allows participants to place anonymous bids on items, and at the end of the auction, the highest bid is revealed.
- Allows participants to submit bids for auction items.
- Keeps bids anonymous.
- Displays the highest bid and bidder at the end of the auction.
This program includes functionality to clear the console screen between bids. The method used to clear the console varies by operating system:
- Windows: The console is cleared using the 'cls' command.
- Linux/MacOS: The console is cleared using the 'clear' command.