Please Ignore the Background Noice in this video (Barking) :P
Well
In this Video I have explained the Following Topics
1.Nested Tuples in python
2. Iterating Over Tuples in Python
Nested means , a code of block insider another for example nested if looks something like this
if condition :
if conditon :
if condition :
..........
Now in order to nesting of tuples there are tons of ways. Some of them are shown here
for example
names = ("John", "Mark", "Luke", "Json")
marks = ( 80 , 85 , 90 , 85)
student = (names , marks)
this is one way of nesting Tuples
the detail explaination and implementation is mentioned in this video
The next topic is the Iteration over tuples
Whenever Iteration is spoken we always think about Loops
For example in this video i have used the example of For loop
Please watch the full video to understand it better
#NestedTuples #ForLoop
Nested Tuples in Python , Iterating over Tuples in Python - Part 9