How to Repeat a piece of code a certain amount of times in python

后端 未结 2 658
青春惊慌失措
青春惊慌失措 2021-01-26 12:09

so basically what Im trying to do is to write a piece of code about making a cup of tea(school homework)

so basically here is my code

print (\"Making A C         


        
相关标签:
2条回答
  • 2021-01-26 12:27

    Maybe this can help you:

    print ("Making A Cup Of Tea")
    num_orders = int(input("How many for Tea? "))
    print ("there are", num_orders, "People for tea")
    orders = []
    for i in range(num_orders):
        b = input ("Person %i, Would you like Sugar? YES/NO " % (i + 1))
        sugar = None
        if b in ("YES", "Y", "y", "yes"):
            sugar = input("How many sugars? ")
        else:
            print ("Okay No sugar")
    
        milk = input("How Much Milk Would You Like? SMALL/MEDIUM/LARGE ")
    
        print ("Order is being processed, next order:\n")
        orders.append({'sugar': sugar, 'milk': milk })
    
    print('The orders has been processed with these data:')
    for i in range(num_orders):
        order = orders[i]
        print (' - Person', i + 1, 'wants tea', ('with %i' % int(order['sugar']) if order['sugar'] else 'without'), 'sugar and ', order['milk'], 'milk')
    

    The previous code will generate an output similar to:

    Making A Cup Of Tea
    How many for Tea? 3
    there are 3 People for tea
    Person 1, Would you like Sugar? YES/NO y
    How many sugars? 1
    How Much Milk Would You Like? SMALL/MEDIUM/LARGE small
    Order is being processed, next order:
    
    Person 2, Would you like Sugar? YES/NO n
    Okay No sugar
    How Much Milk Would You Like? SMALL/MEDIUM/LARGE large
    Order is being processed, next order:
    
    Person 3, Would you like Sugar? YES/NO y
    How many sugars? 2
    How Much Milk Would You Like? SMALL/MEDIUM/LARGE small
    Order is being processed, next order:
    
    The orders has been processed with these data:
     - Person 1 wants tea with 1 sugar and small milk
     - Person 2 wants tea without sugar and large milk
     - Person 3 wants tea with 2 sugar and small milk
    
    0 讨论(0)
  • 2021-01-26 12:31
    for x in range(n):
        do_something()
    
    0 讨论(0)
提交回复
热议问题