class airlineTicket:
def __init__(self, start, destination, dateoftravel, firstClass,\
economy, business, price):
self.start = start
self.destination = destination
self.dateoftravel = dateoftravel
self.firstClass = firstClass
self.economy = economy
self.business = business
self.price = price
Design a class for an airline ticket. Some of the fields of an airline ticket are start, destination, date of travel, class(economy, first class, business class), price of ticket, number of people traveling, and name of the primary person.