From 912b905e1d9f1c866b101cb3f6107971eb464e52 Mon Sep 17 00:00:00 2001 From: ikkiran Date: Thu, 21 Jun 2012 18:19:40 +0530 Subject: Added documentation to ULT --- ult/Documentation/7.1.rst | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 ult/Documentation/7.1.rst (limited to 'ult/Documentation/7.1.rst') diff --git a/ult/Documentation/7.1.rst b/ult/Documentation/7.1.rst new file mode 100644 index 0000000..ae746e0 --- /dev/null +++ b/ult/Documentation/7.1.rst @@ -0,0 +1,28 @@ + +7.1 Manipulatin12.30g Lists +====================== + +1. Slicing + * Perform slicing on a list(0.33 - 2.26) + * Exercise 1: Obtain the primes less than 10, from the given list(2.34 - 2.58) + * Start and stop index in slicing(3.00 - 5.29) + * Exercise 2:Obtain all the multiples of three from the given list(5.47 - 6.10) + +#. Concatenate two lists + * Using the plus operator(6.12 - 7.12) + +#. Sorting lists + * Using the ``sort'' method(7.13 - 8.01) + * Using the ``sorted'' method(8.02 - 8.56) + +#. Reverse lists + * Using the ``reverse'' method(8.58 - 9.28) + +#. Striding + * Example which performs striding(8.58 - 9.47) + * Exercise 3: Obtain a list with marks in descending order from the given list(9.52 - 11.07) + +#. Summary(11.10 - 11.23) + +#. Evaluation Questions(11.25 - 12.30) + -- cgit