Does someone know what [44:]
is doing in statement huck_finn_text.split('CHAPTER ')[44: ]
and why 44?
huck_finn_url = 'https://bitbucket.org/bakuzen/bsu-fds/raw/master/lec/huck_finn.txt'
huck_finn_text = read_url(huck_finn_url)
huck_finn_chapters = huck_finn_text.split('CHAPTER ')[44:]
# Display the chapters of Huckleberry Finn in a table.
Table().with_column('Chapters', huck_finn_chapters)
Output is enter image description here