python data structures and algorithms code example
Example 1: data structures and algorithms in python
great course, highly recommended !
"https://www.udemy.com/course/algorithms-and-data-structures-in-python/"
Example 2: python data structures
string = 'Hi my name is Dr.Hippo'
integer = 12345
fl = 123.456
li = [1,2,3,,'string',None]
t = True
f = False
n = None
dictionary = {'key':'value'}
Example 3: data structures used
Depending on the data that I am working with, I use
Arrays, Lists, Sets, Maps.