Is this the correct way to slice the last 4 items from a list? x = [1,2,3,4,5,6,7,8,9] print x[-4:]
It works, but is it Pythonic? -- http://mail.python.org/mailman/listinfo/python-list
Is this the correct way to slice the last 4 items from a list? x = [1,2,3,4,5,6,7,8,9] print x[-4:]
It works, but is it Pythonic? -- http://mail.python.org/mailman/listinfo/python-list