Skip to content

Instantly share code, notes, and snippets.

View Audran-wol's full-sized avatar
💭
Am coding to understand the futuure

Audran Yematha Audran-wol

💭
Am coding to understand the futuure
View GitHub Profile
class FlightData:
def __init__(self, price, origin_city, origin_airport, destination_city, destination_airport, out_date, return_date):
self.price = price
self.origin_city = origin_city
self.origin_airport = origin_airport
self.destination_city = destination_city
self.destination_airport = destination_airport
self.out_date = out_date
self.return_date = return_date