Python Crash Course Exercises

This is an optional exercise to test your understanding of Python Basics. The questions tend to have a financial theme to them, but don't look to deeply into these tasks themselves, many of them don't hold any significance and are meaningless. If you find this extremely challenging, then you probably are not ready for the rest of this course yet and don't have enough programming experience to continue. I would suggest you take another course more geared towards complete beginners, such as Complete Python Bootcamp

Exercises

Answer the questions or complete the tasks outlined in bold below, use the specific method described if applicable.

Task #1

Given price = 300 , use python to figure out the square root of the price.


In [4]:
price = 300

In [5]:
import math
math.sqrt( price )


Out[5]:
17.320508075688775

In [6]:
import math
math.sqrt( price )


Out[6]:
17.320508075688775

Task #2

Given the string:

stock_index = "SP500"

Grab '500' from the string using indexing.


In [11]:
stock_index = "SP500"

In [13]:
stock_index[2:]


Out[13]:
'500'

Task #3

Given the variables:

stock_index = "SP500"
price = 300

Use .format() to print the following string:

The SP500 is at 300 today.

In [14]:
stock_index = "SP500"
price = 300

In [15]:
print('The {quote} is at {price} today'.format(quote=stock_index,price=price))


The SP500 is at 300 today

Task #4

Given the variable of a nested dictionary with nested lists:

stock_info = {'sp500':{'today':300,'yesterday': 250}, 'info':['Time',[24,7,365]]}

Use indexing and key calls to grab the following items:

  • Yesterday's SP500 price (250)
  • The number 365 nested inside a list nested inside the 'info' key.

In [16]:
stock_info = {'sp500':{'today':300,'yesterday': 250}, 'info':['Time',[24,7,365]]}

In [18]:
stock_info['sp500']['yesterday']


Out[18]:
250

In [19]:
stock_info['info'][1][2]


Out[19]:
365

Task #5

Given strings with this form where the last source value is always separated by two dashes --

"PRICE:345.324:SOURCE--QUANDL"

Create a function called source_finder() that returns the source. For example, the above string passed into the function would return "QUANDL"


In [25]:
def source_finder(str): 
    index = str.find('--')
    return str[index + 2:]

In [26]:
source_finder("PRICE:345.324:SOURCE--QUANDL")


Out[26]:
'QUANDL'

Task #5

Create a function called price_finder that returns True if the word 'price' is in a string. Your function should work even if 'Price' is capitalized or next to punctuation ('price!')


In [38]:
def price_finder(str):
    return str.upper().find('PRICE') != -1

In [39]:
price_finder("What is the price?")


Out[39]:
True

In [40]:
price_finder("DUDE, WHAT IS PRICE!!!")


Out[40]:
True

In [43]:
price_finder("The price is 300")


Out[43]:
True

In [44]:
price_finder("There are no prize is 300")


Out[44]:
False

Task #6

Create a function called count_price() that counts the number of times the word "price" occurs in a string. Account for capitalization and if the word price is next to punctuation.


In [45]:
def count_price(str):
    return str.upper().count('PRICE')

In [46]:
s = 'Wow that is a nice price, very nice Price! I said price 3 times.'

In [49]:
count_price(s)


Out[49]:
3

In [51]:
s = 'ANOTHER pRiCe striNG should reTURN 1'

In [52]:
count_price(s)


Out[52]:
1

Task #7

Create a function called avg_price that takes in a list of stock price numbers and calculates the average (Sum of the numbers divided by the number of elements in the list). It should return a float.


In [53]:
def avg_price(prices):
    return sum(prices) / len(prices)

In [54]:
avg_price([3,4,5])


Out[54]:
4.0

Great job!