https://github.com/imdarshangk/silent-auction-program
This is a simple Python program that simulates a silent auction. Users can enter their names and bid amounts, and the program determines the winner with the highest bid.
https://github.com/imdarshangk/silent-auction-program
auctuin bidding python pythonprojects
Last synced: about 2 months ago
JSON representation
This is a simple Python program that simulates a silent auction. Users can enter their names and bid amounts, and the program determines the winner with the highest bid.
- Host: GitHub
- URL: https://github.com/imdarshangk/silent-auction-program
- Owner: imDarshanGK
- Created: 2024-08-05T00:01:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-13T17:44:05.000Z (about 1 year ago)
- Last Synced: 2024-12-13T18:34:59.887Z (about 1 year ago)
- Topics: auctuin, bidding, python, pythonprojects
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Silent Auction Program 💰
## Overview
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.
## Features
- Allows participants to submit bids for auction items.
- Keeps bids anonymous.
- Displays the highest bid and bidder at the end of the auction.
## Clearing the Console
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.