DataCamp Python Flashcards
If you wanna use a package and you want to use it in your code what do you do?
first, import it at the beginning of your code
then if you want to use it write it with a dot at the end and then attach what you want to extract from the package
say you want to extract pi from the math package,
math.pi
How do you bring add something to your script from package in a general way?
from math import pi
Why is the NumPy array useful ?
You can perform calculations over entire arrays
How can you simply a package name for use in your script
write as after your import
e.g. import numpy as np
Whats the difference between when you add lists normally and when you add them using NumPy?
When you add them normally, it just combines the lists, one after the other.
With NumPy the lists will add
What is one thing you can’t do with numpy arrays which you can do with regular arrays?
numpy arrays cannot contain arrays with different types.
If you try to build such a list, some of the elements’ types are changed to end up with a homogeneous list. This is known as type coercion.
what package do you use to plot in python?
And how would you add it to your code?
import matplotlib.pyplot as plt
How do you create a plot in python with matplotlib imported?
and how do you print it ?
plt. plot()
plt. show
(remember plt is a subset of matplot lib, you have to call it when doing operations)
How do you convert an axis on a plot into log ?
plt.xscale(‘log’)
what are the inputs of the histogram function?
hist(x, bins = ‘ ‘)
x is the list of values
bins refer to the list should be divided, if you don’t specify it will be 10 by default. Remember you need to write bins = ‘your value’.
How to add labels to plots python?
plt.xlabel()
How do you customise the range/length of the
plot. yticks()
plot. xticks()
how would you customise the value of plt.yticks() shows?
You have an array after you ticks array to specify the value each tick should represent.
plt.yticks( [0,1,2,3,4], [‘0’,’1B’, ‘2B’, ‘3B’, ‘4B’, ‘5B’]
how do you add text to a plot?
plt.text(1550, 71, ‘India’)
corresponding coordinates and name
How do you create dictionaries?
use { }
Use a : to separate the key and the value.
call out a value using your_dict_name[key]
How do you get all the keys from a dictionary?
europe.keys()
europe being your dictionary in this case.
Why can you not use a list as a dictionary key?
because it isn’t an immutable object
it’s mutable - in other words it can be changed.
When to use a dictionary and when to use a list?
Use a list when you have a collection of values were order matters and you want to be able to select entire subsets.
Use a dictionary when you want a table that allows you to lookup up values very easily and quickly using unique keys.
How do you add a value in a dictionary?
europe[‘iceland’] = ‘reykjavik’
dict[key] = ‘what you want to set the key to’
How do you create a table starting from dictionaries and using pandas?
create your dict, remember keys are the column labels and the values are the data for each column.

what is csv short for ?
comma separated values.
How can you read a csv file using panda
what do you really need to remember?
that the csv file name or directory needs to be written within qoutes.

How can you change the index of csv file you are reading ?
cars = pd.read_csv(‘cars.csv’, index_col = 0 )
this sets the first column is used as the row labels

What is the diff between loc and iloc
only difference is how you refer to columns and rows
iloc uses integers
Why would you double brackets when indexing panda ?
not putting double brackets gives a series in terms of one column, even rows are converted into columns, which can be inconvenient.
Double brackets allow for a dataframe, and rows will remain rows.
How to filter pandas dataframe?
Select your desired column(s) or row(s) and perform a operation, to filter, a comparison.
e.g. is_huge = brics[“area”] > 8
You need to store it in a variable so that you can index the dataframe, as follows:
brics[is_huge]
in a for loop, what function do you have to use to get the index ?
enumerator
what do you have to use to iterate a dictionary in a for loop?
What is this thing specified as?
for key, value in your_dict.items()
a method
What do you have to use to iterate through all elements in a numpy array ?
What is this thing referred as ?
np.nditor(my_array)
function
how do you iterate a panda dataframe in a for loop?
for lab, row in you_dataframe.iterrows()
what is the efficient way of adding a column to a panda dataframe based of the data of another column?
your_dataframe[“new_column_name”] = your_dataframe[“selected_column”].apply(function)
How do you create random numbers from numpy
np.random.rand()
How to create random integer?
np.random.randint()
How to set seed manually when creating random numbers?
np.random.seed(your_value)
what sort of type does print() return ?
nonetype
how to define functions in python?
def you
Why is returning values generally more desirable than printing them out?
the type returned from printing is nonetype
What is a tuple and what are its properties ?
essentially it is list that allows function to return multiple values
Like a list it can contain multiple values.
It is immutable - you can’t modify values !
constructed with parentheses
You can access values in a tuple in the same way you would with a list, by indexing.
How do you use a tuple to return two values from a function?
define to output variables,
put them into a tuple
print the tuple

How do you unpack a tuple?
a,b,c = your_tuple
unpacks to the elements of your tuple into the varibles a,b,c
Why would equate a function to more than one variable?
If the function returns more than variable maybe you want to print them individually and not in bracket form after each other

Explain this code.

dataframe saved in df variable
There is empty dictionary defined as langs_count
the ‘lang’ column is saved as col
The for loop goes through every value in the col
For each value we test whether the value is in the dictionary if it is, add one to the value the to the associated key, else update the dictionary and add the entry and add one to its value.
How do you add something to a dictionary?
your_dict.update({key : value})

How to change a key value in a dictionary?
your_dict[key] = value
How do you make a variable global when it is in a local environment ?
write
global your_variable
If you change a variable in a function what sort of scope is it?
local scope.
How does python go through finding variables in nested functions?
First it looks locally in the nested function
If it does not find the variable, it goes to the function the previous function is nested in and searches locally there.
If it still can’t find it, it searches globally.
How do you change a variable in nested function (all the functions) without changing it globally?
use
nonlocal
Why are nested functions necessary?
They are necessary to scale programs, if there is code that needs to be repeated multiple times in a function, it is better to write a function to replace that code.
How would you use nested functions to concatenate three input words ?
How are the scopes searched?
Local Scope
Enclosing Functions
Global
Built-in
How does this code work?
The outer function determines the number of copies
The inner function takes in a word and multiplies it by n, the value is then returned to outer
A value for n is assigned to twice and thrice
Both Twice and Thrice are input ‘hello’ and the print function is called on them.
With a value of n associated with Twice and Thrice, the inner function returns to the concatenated strings which are then princted.
What are default arguments in a function?
Default argument is a variable already defined in the function
in the case that the user does not personally define the variable, the default value is used.
This can be useful when a value for the variable is required.
What are flexible arguments and how are they defined?
Flexible arguments allow for any number of inputs from the user.
It is defined within the function brackets with a * in front of the variable
e.g. *args
what do **kwargs do ?
they allow for an arbitrary amount of key,value pairs defined by the user.
you can define any kwarg by placing a ** in front.
when you have used **kwargs how do you loop through the values ?
for key, value in kwargs.items():
what do lambda functions allow?
Allow you to write functions quick
What does the map() function do ?
The map() function applies a given function to each item of an iterable (list, tuple etc.) and returns a list of the results.
a function that allows you to remove elements from a list that don’t match your criteria
filter()