Introduction

In this blog, I will explain the simple way of how to reference the last element of a string, in Python. The code, shown below, will clearly mention the last word that I have given, and will display it in the Run module.
Software Requirement
Python 3.5.2
Simple Programming
  1. print("Welcome To C#Corner....")
  2. print('Referencing Last Elements :')
  3. course=["c","c++","php","python","oracle"]
  4. a=len(course)
  5. print("%s" % course[a-1])
  6. print("%s" % course[a-2])
Explanation
So, you can see that we have given a string in course. "oracle" is the last element of it. By using the simple way I referenced this last element. The word is now displayed in the Run module.
Output
Output