Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. number = input('Registration number: ')
  2.  
  3. name = input('Auctioneer's name: ')
  4.  
  5. minimum = input('Minimum bid amount: $')
  6.  
  7. itemDes = input('Item Description: ')
  8.  
  9. bidCount = input('Number of bids: ')
  10.  
  11. AuctioneerDet = input('Auctioneer's details: ')
  12.  
  13. itemNum = random.randint(400,800)
  14.  
  15. global itemList
  16.  
  17. itemList = []
  18.  
  19. itemList.append((minimum, itemDes, AuctioneerDet, bidCount,
  20. itemNum))
  21.  
  22. if menu1 == '2' :
  23.  
  24. print(itemList)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement