Python: Moves the specified amount of elements to the start of the list
Python List: Exercise - 263 with Solution
Write a Python program to move the specified number of elements to the start of the given list.
Use slice notation to get the two slices of the list and combine them before returning.
Sample Solution:
Python Code:
# Define a function named 'move_start' that moves elements of a list by a given 'offset.'
def move_start(nums, offset):
return nums[-offset:] + nums[:-offset]
# Slices the list from the negative 'offset' position to the end (equivalent to moving elements from the end to the start) and concatenates it with the portion from the start to the negative 'offset' position.
# Test the 'move_start' function with different lists and offsets.
print(move_start([1, 2, 3, 4, 5, 6, 7, 8], 3))
# Move the elements three positions to the start. (Expected output: [6, 7, 8, 1, 2, 3, 4, 5])
print(move_start([1, 2, 3, 4, 5, 6, 7, 8], -3))
# Move the elements three positions to the end. (Expected output: [4, 5, 6, 7, 8, 1, 2, 3])
print(move_start([1, 2, 3, 4, 5, 6, 7, 8], 8))
# The 'offset' equals the length of the list, resulting in the same list.
print(move_start([1, 2, 3, 4, 5, 6, 7, 8], -8))
# The negative 'offset' equals the negative length of the list, resulting in the same list.
print(move_start([1, 2, 3, 4, 5, 6, 7, 8], 7))
# Move the elements seven positions to the start. (Expected output: [2, 3, 4, 5, 6, 7, 8, 1])
print(move_start([1, 2, 3, 4, 5, 6, 7, 8], -7))
# Move the elements seven positions to the end. (Expected output: [8, 1, 2, 3, 4, 5, 6, 7])
Sample Output:
[6, 7, 8, 1, 2, 3, 4, 5] [4, 5, 6, 7, 8, 1, 2, 3] [1, 2, 3, 4, 5, 6, 7, 8] [1, 2, 3, 4, 5, 6, 7, 8] [2, 3, 4, 5, 6, 7, 8, 1] [8, 1, 2, 3, 4, 5, 6, 7]
Flowchart:
Python Code Editor:
Previous: Write a Python program to move the specified number of elements to the end of the given list.
Next: Write a Python program to create a two-dimensional list from given list of lists.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/list/python-data-type-list-exercise-263.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics