Skip to content

Commit

Permalink
Auction2ndCommit
Browse files Browse the repository at this point in the history
  • Loading branch information
SKSADIRUDDIN committed Apr 11, 2023
1 parent 5a9ec30 commit 4f02084
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from replit import clear
#from replit import clear
import art
con="yes"
bid={}
Expand All @@ -8,13 +8,13 @@
val=int(input("Enter your bid : Rs "))
bid[name]=val
con=input("Is there any other to bid type yes or no ")
clear()
#clear()
max=0
win=""
for key in bid:
if(bid[key]>max):
max=bid[key]
win=key
print(f"The winner is {win} with a bid of Rs {max}")

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

0 comments on commit 4f02084

Please sign in to comment.