Introduction

In this blog, I will explain about accessing a Tuple value to another Tuple. I will try to access the value of the Tuple to another Tuple.
Software Requirement
Python 3.5.2
Simple Programming
  1. print("Welcome To C#Corner...........")
  2. # Accessing a Tuple Through Another Tuple
  3. a=("Zero","First","Second","Third")
  4. b=(a,"B's 1st Element")
  5. print("%s" % b[1])
  6. print("%s" % b[0][0])
  7. print("%s" % b[0][1])
  8. print("%s" % b[0][2])
  9. print("%s" % b[0][3])
Explanation
In this blog, I will explain about accessing the value through another tuple. In the first code, I will assign the "a" value and in the second code, I will display the "a" value by the code in the "a" value.
Output
Output