You visited a restaurant and the food items in that restaurant are sorted, based on their amount of calories. You have to reserve this list of food items containing calories.
You have to use the following three methods to reserve a list:
- Inbuild method of python
- List name [::-1] slicing trick
- Swap the first element with the last one and second element with second last one and so on like,
[6 7 8 34 5] -> [5 34 8 7 6]
Input:
Take a list as an input from the user
[5, 4, 1]
Output:
[1, 4, 5]
[1, 4, 5]
[1, 4, 5]
All three methods give the same results!
Your laptop with 3.6.x (onwards) installed.
NOTE: Those with Linux and MacOSX would have Python installed by default, no action required.
Windows: Download the version for your laptop via https://www.python.org/downloads/
NOTE: In your preferred editor, make sure indentation is set to "4 spaces".
- Clone or download repositiory: https://github.com/arevish/food-calories.git
- In source folder, run
python3 'reverselist.py'
to start game, optionally, run with--help
argument to see other runtime options.