Ejemplo n.º 1
0
def make_bicycles(bicycles, models, company_inventory):
    another = True
    while another:
        bicycle_production(bicycles, models, company_inventory)
        another = yes_or_no("Would you like to add another order of bicycles?")
Ejemplo n.º 2
0
def make_bicycles(bicycles, models, company_inventory):
    another = True
    while another:
        bicycle_production(bicycles, models, company_inventory)
        another = yes_or_no("Would you like to add another order of bicycles?")
Ejemplo n.º 3
0
def make_models(models, CATEGORIES, COLORS, SIZES):
    another = True
    while another:
        make_model(models, CATEGORIES, COLORS, SIZES)
        another = yes_or_no("Would you like to add another model?")
Ejemplo n.º 4
0
def make_models(models, CATEGORIES, COLORS, SIZES):
    another = True
    while another:
        make_model(models, CATEGORIES, COLORS, SIZES)
        another = yes_or_no("Would you like to add another model?")