PageRange 类¶
- class pypdf.PageRange(arg: slice | PageRange | str)[源代码]¶
基类:
object
A slice-like representation of a range of page indices.
For example, page numbers, only starting at zero.
The syntax is like what you would put between brackets [ ]. The slice is one of the few Python types that can't be subclassed, but this class converts to and from slices, and allows similar use.
PageRange(str) parses a string representing a page range.
PageRange(slice) directly "imports" a slice.
to_slice() gives the equivalent slice.
str() and repr() allow printing.
indices(n) is like slice.indices(n).