how to not print the end="," on the last element of a list code example
Example 1: python how to get the last element in a list
some_list = [1, 2, 3]
some_list[-1]
print(some_list)
#Output = 3
Example 2: how to print last element in a list python
lis[len(lis)-1]