Answer:
Explanation:
.1 Display all information from the customer table for all customers that have a balance that is greater than the average balance.
2. Display all information from the rep table for all representatives that have a rate which is equal to the minimum rate for representatives.
3. Display each unique description and price (no duplicates) for all parts that have a quoted price that is greater than the average quoted price for all parts ordered.
4. List all streets where either a customer or a representative is located
 
        
             
        
        
        
Answer:
see explaination 
Explanation:
def words2number(s):
 words = s.split()
 numbers = ['zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine']
 result = ""
 for word in words:
 if word in numbers:
 result += str(numbers.index(word))
 return result
 
        
                    
             
        
        
        
Answer:
I do not understand can you type in English?
Explanation: