w3resource

Python: Check whether the n-th element exists in a given list

Python List: Exercise - 59 with Solution

Write a Python program to check whether the n-th element exists in a given list.

Visual Presentation:

Python List: Check whether the n-th element exists in a given list

Sample Solution:

Python Code:

# Define a list 'x' containing integers
x = [1, 2, 3, 4, 5, 6]

# Calculate the length of the list 'x' using the 'len' function and subtract 1 to get the last element's index
xlen = len(x) - 1

# Print the last element of the list 'x' using its index, which is 'xlen'
print(x[xlen])

Sample Output:

6

Flowchart:

Flowchart: Check whether the n-th element exists in a given list

Python Code Editor:

Previous: Write a Python program to replace the last element in a list with another list.
Next: Write a Python program to find a tuple, the smallest second index value from a list of tuples.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

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-59.php