#first create via [1st_element, 2nd_element, etc]
= [10, 15, 10, 100, "Help!"]
x print(type(x))
x
<class 'list'>
[10, 15, 10, 100, 'Help!']
2025-03-31
Justin Post
We’ve learned a little about how python
and our Jupyterlab
coding environment works.
Next, we’ll go through and look at a number of common data structures used in python
. We’ll try to follow a similar introduction for each data struture where we
Along the way we’ll learn some things we want to do with data along with control flow operators (if/then/else, looping, etc.)!
Note: These types of webpages are built from Jupyter notebooks (.ipynb
files). You can access your own versions of them by clicking here. It is highly recommended that you go through and run the notebooks yourself, modifying and rerunning things where you’d like!
NumPy
arraysPandas
data framesLists, Tuples, Strings, and arrays are all sequences (ish) so they have similar functions and behavior! It is important to recognize these common behaviors
Properties of lists:
Four major ways to create a list - [element1, element2]
- list((element1, element2, ...))
- create an empty list and use the append method to add elements - list comprehensions
<class 'list'>
[10, 15, 10, 100, 'Help!']
['Python', 'List', 5]
#range() is a function that is 'iterable'. By putting it in a list, we get the values out
range(1,10)
range(1, 10)
On sequence type objects, *
replicates the object a certain number of times. This is common behavior to remember!
As lists don’t really restrict what its elements can be, lists can contain lists!
Very often we want to obtain pieces or elements of an object. We can easily do this with lists.
[]
after the object namew = [list(range(1,5)), x, 3]
print(w)
#the first element is a list so the list is returned
print(w[0])
#similar with the second element
print(w[1])
[[1, 2, 3, 4], [10, 15, 10, 100, 'Help!'], 3]
[1, 2, 3, 4]
[10, 15, 10, 100, 'Help!']
We can do more than one level of indexing with a single line of code (when applicable). As w[1]
returns a list we can use []
after w[1]
to return a specific element or slice from that list.
Often we want to return more than one element at a time with our sequence type objects. This is called slicing.
:
Again, if we have a list with lists (or other sequence type objects in them) slicing will still return those objects as a list.
Recall: Two major ways to do an operation on a variable/object: functions and methods
function_name(myvar, other_args)
len()
and max()
functions earliermyvar.method(other_args)
.pop()
returns and removes the last element.append()
method adds an element to the end of the listThe methods for lists are listed at the top of this page of the python 3 documentation.
Some of the common functions in python are listed on this page of the documentation.
Next we’ll look at another sequence type object in python, the string. As with lists we’ll go through
characters
(letters, digits, and symbols) called a string (Nice reference)
str
str()
to create a string. This is called castingRemember that strings and lists are both sequence type objects. Therefore, we have similar operations on these objects.
my_string
variable contains a different character from "wolf pack"
[]
0
my_string
variable in reverse order using a -
(start with 1 not 0 for the last element though!):
Several built-in operations on strings
+
will concatenate two strings togetherFile "<ipython-input-48-e8177530793e>", line 3 x ' pack' ^ SyntaxError: invalid syntax
This behavior actually works with lists as well!
You might wonder what happens when an operator like +
is applied to a string and a numeric value.
--------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-51-0f3c839ed4d7> in <cell line: 2>() 1 #throws an error ----> 2 'wolfpack' + 2 TypeError: can only concatenate str (not "int") to str
R
, R
does this implicit coercion for you without warning (dangerous but you get used to it!)python
, to join a string and number cast the number as a string!You can also repeat strings with the *
operator and an integer (again similar to a list)
go pack go pack go pack
go pack go pack go pack go pack go pack
len()
returns the number of characterssorted()
returns the sorted values as a list#split the string by a character (here a space) (note this returns a list!)
my_string.strip().split(" ")
['wolf', 'pack']
We saw that lists
could be modified. That means they are mutable
Strings are immutable
--------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-73-865d7b8d0579> in <cell line: 3>() 1 my_string = "wolf pack" 2 #this will throw an error ----> 3 my_string[1] = "a" TypeError: 'str' object does not support item assignment
Sometimes we want to place certain elements into a string via variables or values. This can be done using the .format()
method.
years = 3
salary = 100000
myorder = "I have {1} years of experience and would like a salary of {0}."
print(myorder.format(salary, years))
I have 3 years of experience and would like a salary of 100000.
myorder = "I have {} years of experience and would like a salary of {}."
print(myorder.format(years, salary))
I have 3 years of experience and would like a salary of 100000.
There are a few other ways to do this that we’ll visit later on!
This quick video demonstration shows some quick exercises with strings and lists. Remember to pop the video out into the full player.
The notebook written in the video is available here.
from IPython.display import IFrame
IFrame(src = "https://ncsu.hosted.panopto.com/Panopto/Pages/Embed.aspx?id=72bd0292-4c48-4064-8977-b0ef017167f6&autoplay=false&offerviewer=true&showtitle=true&showbrand=true&captions=false&interactivity=all", height="405", width="720")
Lists are 1D ordered objects
Strings are sequences of characters
Immutable
Index with []
(starting at 0)
Many functions and methods built in to help
+
for concatenation and *
for repeating a string
Sequence type objects have similar behavior!
If you are on the course website, use the table of contents on the left or the arrows at the bottom of this page to navigate to the next learning material!
If you are on Google Colab, head back to our course website for our next lesson!