11 lines
252 B
Python
11 lines
252 B
Python
#!/usr/bin/python
|
|
|
|
storages = ['S001','S002','S003','S004']
|
|
x = 16
|
|
y = 12
|
|
for i in range (1, x + 1):
|
|
for j in range (1, y + 1):
|
|
for storage in storages:
|
|
print ("INSERT INTO Lockedslots VALUES ('%s', %d, %d, 'startup');" % (storage, i, j))
|
|
|