Solution:
def main():
n=int(input("How many customers? "))
print()
# User input of the fruit requirement of all customers.
for i in range(n):
print("Name of Customer",i+1)
name = input()
print("Oranges are $1.40 each. How many Oranges?")
no_of_orange = int(input())
print("Apples are $.75 each. How many Apples?")
no_of_apple = int(input())
print(name,", you bought",no_of_orange,"Orange(s) and",no_of_apple,"Apple(s).")
# Calculation of total bill
total_bill = (no_of_orange*1.40) + (no_of_apple*0.75);
#Print total_bill
print("Your bill is $",total_bill,end="");
print("\\");
if __name__=="__main__":
main()