get last item of set python code example

Example 1: get last element of array python

some_list[-1]

Example 2: python get last element of list

number_list = [1, 2, 3]
print(number_list[-1]) #Gives 3

number_list[-1] = 5 # Set the last element
print(number_list[-1]) #Gives 5

number_list[-2] = 3 # Set the second to last element
number_list
[1, 3, 5]

Example 3: python get last item in a list

my_list = ["I", "Love", "Python"]
last_item_in_list = my_list[-1]
# last_item_in_list = "Python"

Example 4: how to get last element of set

// Example program
#include <iostream>
#include <string>
#include <set>
#include <iterator>
using namespace std;
int main()
{
    set<int>a = {5,9,100,25,4,6};
    auto it = a.end();
    it--;
    cout << *it;
}

Tags:

Cpp Example