2024-08-02: 5. Secret Auction
Secret Auction code.
from replit import clear
# HINT: You can call clear() to clear the output in the console.
bid_list = {}
more_bidder = "yes"
high_amount = 0
while more_bidder == "yes":
name = input("What is your name?: ")
amount = int(i...
yonny.yoning.com1 min read