Carly's Clippers
This commit is contained in:
		
							parent
							
								
									4e41c46787
								
							
						
					
					
						commit
						a6e32a2296
					
				
							
								
								
									
										32
									
								
								Codecadmey Projects/Carlys_Clippers.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								Codecadmey Projects/Carlys_Clippers.py
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,32 @@ | |||||||
|  | hairstyles = ["bouffant", "pixie", "dreadlocks", "crew", "bowl", "bob", "mohawk", "flattop"] | ||||||
|  | 
 | ||||||
|  | prices = [30, 25, 40, 20, 20, 35, 50, 35] | ||||||
|  | 
 | ||||||
|  | last_week = [2, 3, 5, 8, 4, 4, 6, 2] | ||||||
|  | 
 | ||||||
|  | total_price = 0 | ||||||
|  | 
 | ||||||
|  | total_revenue = 0 | ||||||
|  | 
 | ||||||
|  | for price in prices: | ||||||
|  |   total_price += price | ||||||
|  |   print(total_price) | ||||||
|  | 
 | ||||||
|  | average_price = total_price / len(prices) | ||||||
|  | print("Average Haircut Price: $" + str(average_price)) | ||||||
|  | 
 | ||||||
|  | new_prices = [price - 5 for price in prices] | ||||||
|  | print(new_prices) | ||||||
|  | 
 | ||||||
|  | for i in range(len(hairstyles)): | ||||||
|  |   total_revenue += prices[i] * last_week[i] | ||||||
|  | 
 | ||||||
|  | print("Total Revenue $" + str(total_revenue)) | ||||||
|  | 
 | ||||||
|  | average_daily_revenue = total_revenue / 7 | ||||||
|  | print("Average Daily Revenue $" + str(average_daily_revenue)) | ||||||
|  | 
 | ||||||
|  | #print(range(0, (len(hairstyles) - 1))) | ||||||
|  | cuts_under_30 = [hairstyles[i] for i in range(0, (len(hairstyles) - 1)) if new_prices[i] < 30] | ||||||
|  | 
 | ||||||
|  | print(cuts_under_30) | ||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user