-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathh.8
More file actions
23 lines (20 loc) · 746 Bytes
/
Copy pathh.8
File metadata and controls
23 lines (20 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
IdNumber = 0
ItemDescription = 0
MinDays = 0
MinBid = 0
while IdNumber > -1:
print("To end data collection enter -1 for ID number length")
IdNumber = float(input("Enter ID Number: "))
if IdNumber == -1:
break
ItemDescription = input("Enter Description of Item: ")
MinDays = float(input("Enter Minimum Days of auction (Must be between 14 and 28 days inclusivly: "))
if MinDays < 13:
print("minimum days are to low, choose an auction length 14-28 days")
break
if MinDays > 29:
print("Maximum days are to high, choose an auction length 14-28 days")
break
print("ID Number :",IdNumber,)
print("Item Description :",ItemDescription,)
print("Auction Length :",MinDays,)