slice An object usually containing a portion of a sequence. A slice is created using the subscript notation, [] with colons between numbers when several are given, such as in variable_name[1:3:5]. The bracket (subscript) notation uses slice objects internally. #### class slice(stop) class slice(start, stop, step=1) Return a slice object representing the set of indices specified by range(start, stop, step). The start and step arguments default to None. ...