Built with Hugo and the Learn Theme
© Copyright 2020 Robert Arkiletian
One example which the video missed was using .split without arguments. It defaults to a space ' ‘. So
s='bird dog cat' print( s.split() )
would output
['bird','dog','cat']