Week 0: Introduction to Python¶
In this notebook, we will cover some concepts in Python, including:
- Variable assignment
- Data types
- Math in Python
- Print statements
1. Variable Assignment¶
A variable in Python is simply a way to store data so you can reference and or change it later. You can think of a variable as a labeled box that holds a value.
variable rules:
- You can assign a variable to a value using the equals sign
=
ex: variable = value. - variable names can't start with a number (for example the variable name
5head
won't work, butfivehead
will) - variable names also can't have spaces in them (
five head
won't work, butfive_head
will)
# Here I assign a variable I chose to name "x" to hold the integer value 10...
x = 10
# I can see the value assigned to x by printing it with the print() function (more on print later)
print(x)
10
# Also, a useful tip for jupyter notebooks is that the last variable/value/command you put in a cell will print to output without having to use print().
x
10
Python runs commands sequentially¶
Commands are run from top to bottom.
In the cell below, the first line my_var = 1
is evaluated first.
Then it's value is printed with print(my_var)
.
This same process is then repeated when I assign my_var = 2
and then print its value again with print(my_var)
.
my_var = 1
print(my_var) # this prints 1
my_var = 2
print(my_var) # this prints 2
Variable updating¶
variables can be overwritten
variables can also reference themselves.
# assigning my_var to be 10
my_var = 10
print(my_var)
# overwriting my_var to be its current value plus 1.
my_var = my_var + 1
print(my_var)
10 11
# there are different types of values that variables can store...
# Here I assign a variable I chose to name "y" to the value "my name is Nate"
# this type of value is categorically different from a number and we will go into that distinction in the next cell
y = "my name is Nate"
print(y)
my name is Nate
2. Data Types¶
Each value has a data type. The data type defines what kind of information the value holds and what operations can be performed on it.
Here are the most common data types in Python:
- Integer (
int
): Whole numbers, such as10
or-42
. - Float (
float
): Decimal numbers, such as3.14
or-0.5
. - String (
str
): Text, such as"Hello"
or"my name is Nate"
. - Boolean (
bool
): Logical values, eitherTrue
orFalse
.
Type Inference¶
Python can know/infer the data type of a value or varaible assigned to a value, by how the value is formatted.
For each of the code cells below I assign the variable my_var to a value, each time changing the data type of the value through how I format it.
I call the type() function on my_var to display the data type of the value assigned to my_var.
# my_var inferred as integer because there is no decimal point
my_var = 10
type(my_var)
int
# my_var inferred as float because I put a decimal point
my_var = 10.0
type(my_var)
float
# my_var inferred as string becasue I put single quotes around text. Double quotes also work
my_var = '10'
type(my_var)
str
# my_var inferred as boolean because Python recognizes True/Flase (captials needed) as booleans
my_var = True
type(my_var)
bool
Changing types¶
You can also change the type of a variable/value with pythons type casting functions...
If a conversion is possible... and keep in mind some aren't. For example it is not possible to convert the string 'abc' to an integer.
These type casting functions will convert anything you put inside the parentheses to the type specified in the name...
int()
float()
str()
bool()
# assign my_var to be the string 10
my_var = '10'
# print value of my_var
print(my_var)
# print type of my_var
type(my_var)
10
str
# change my_var to be an integer
my_var = int(my_var)
# print value of my_var
print(my_var)
# print type of my_var
type(my_var)
# Two things happen here.
# 1. int(my_var) converts the value assigned to my_var (in this case string '10') and converts it to an integer (integer 10).
# 2. The integer 10 is then assigned to the my_var variable with the =
10
int
bool() can infer True or False based on other data types.¶
Converting numbers to bools with give False for 0 and True for anything else.
This is useful in practice if you have an array of numbers (lets say some are 0) and you want to apply that array as a mask to either keep or discard information from another array.
# bool() of 0 (int) and 0.0 (float) both evaluate to False
print(bool(0))
print(bool(0.0))
False False
# bool() of any float or int other than 0 will evaluate to True
print(bool(1))
print(bool(0.2))
print(bool(5))
True True True
# bool() of an empty string will also evaluate to False
bool('')
False
# bool() of any non-empty string will evaluate to True
print(bool('asdf'))
print(bool('123-abc'))
True True
Strings (str) can be confusing.¶
For example, say you want either the double quote character "
and the single quote character '
inside your string.
A problem exists because these characters are both used to specify text as a string data type.
Case 1: Simple case of no quote characters inside string¶
# strings can be specified with surrounding single quotes '' or double quotes ""
my_string = 'several characters'
my_other_string = "example"
Case 2: One kind of quote character within string¶
Either you want only single quotes or only double quotes within the string.
# If only single quotes are needed inside the string, use double quotes to type cast the text as a string.
string_single = "It's Python's best feature"
# If only double quotes are needed inside the string, use single quotes to type cast the text as a string.
string_double = 'She said "he said" and they said "she said"'
Case 3: Both single quotes and double quotes are needed inside the string...¶
Escaping quotes with \ character¶
The \
character otherwise known as the escape character, will cause python to interpret whatever character comes after as a literal.
So if I use \'
within my string, I can work around the problem of also using '
to specify my string type.
# I chose to use double quotes "" to type cast the string, but I also used 2 double quotes around garlic and a single quote for ma'am
# since the type casting character can't be inside the string, I use the escape \" to mean literal " within the string
string_both = "excuse me ma'am can you pass the \"garlic\" bread"
print(string_both)
excuse me ma'am can you pass the "garlic" bread
3. Math in Python¶
Here are some examples of how math operations are written
# addition
2+2
4
# subtraction
3-2
1
# multiplication
2*2
4
# exponentiation
2**3
8
# division
5/2
2.5
# floor division
# read as: how many times does 2 fully go into 5.
5//2
2
# modulo (remainder after division)
# 5 modulo 2
5%2
1
variables can also do math¶
You can use variables to hold values and then use them in place of numbers
x = 2
y = 3
z = x * y
print(z)
6
Python follows order of operations similar to PEMDAS¶
Note that You can always use parentheses to control or change the order of evaluation.
But it is still useful to know the default order of operations
- Parentheses: () — Expressions inside parentheses are evaluated first.
- Exponentiation: ** — Exponentiation is evaluated next.
- Multiplication, Division, Floor Division, and Modulus: *, /, //, % — These are evaluated from left to right.
- Addition and Subtraction: +, - — These are evaluated from left to right.
# steps for evaluation listed below
2 + 3 * 4 ** 2 / (1 - 5)
-10.0
Steps:
- Parentheses first: (1 - 5) becomes -4.
- Exponentiation: 4 ** 2 becomes 16.
- Multiplication and Division (from left to right):
- First, 3 * 16 = 48.
- Then, 48 / -4 = -12.
- Addition: 2 + (-12) becomes -10.
Thus, the final result is -10.
Use parentheses in practice¶
In practice it is much easier to understand math expressions when you use parentheses becuase you don't have to think about the other rules in order of operations.
# same expression as above but with parentheses to show order of evaluation.
2 + ((3 * (4 ** 2)) / (1 - 5))
-10.0
# Here is an example of using print directly on a string
print("Look! I can print things this way")
# I've used print() to print the values of variables alreay in this notebook but here is another example.
message = "Or, I can print this way"
print(message)
Look! I can print things this way Or, I can print this way
Print with f-strings¶
Python also supports f-strings (formatted string literals), which allow you to embed variables inside string strings by prefixing the string with f
.
# here I define variables age and month, and use them via f-string inside the print statement
age =23
month = 'October'
print(f'I am {age} years old and will turn {age +1} in {month} 2024')
I am 23 years old and will turn 24 in October 2024