datatable.Frame.__reversed__()¶
__reversed__
()
Returns an iterator over the frame’s columns in reverse order.
This is similar to .__iter__(), except that the columns
are returned in the reverse order, i.e. frame[-1], frame[-2],
frame[-3], etc.
This function is not intended for manual use. Instead, it is
invoked by Python builtin function reversed().
The content on this page is licensed under the Creative Commons Attribution 4.0 License
(CC BY 4.0) ,
and code samples are licensed under the MIT License.