#2 Program Vacation Planner

Taking a Vacation

In this section, we are introduced to functions in Python. We learn how to define, call, and import a function. Ā They consist of three main components the header, an optional comment, and the body. In this assignment, Iā€™m calculating a vacationĀ trip using CodeAcademy.com website.

 

First defining a function with one argument

def hotel_cost(nights):
Ā  Ā  Ā  Ā  Ā  return 140 * nights

 

 

Figuring out theĀ round-trip prices.

CalculatingĀ Transportation

Using some functions to calculate the hotel cost, plane ride cost, and car rental as well as other spendings

Using some functions to calculate the hotel cost, plane ride cost, and car rental as well as other spendings

Using some functions to calculate the hotel cost, plane ride cost, and car rental as well as other spendings