Program Console Vignaankosh.com
Execution Panel
Console is empty.
Create nested tuple (tuple inside tuple) is an interactive PYTHON dry run visualizer from the Tuples programs section. Study the source code, then use the execution controls to follow each step, variable update, highlighted line, and console output.
This page provides a browser-based dry run with source-code highlighting, auto-scroll, voice narration controls, and execution output for learning the program step by step.
# Create nested tuples
nested_tuple = ((10, 20, 30), (40, 50, 60), (70, 80, 90))
print("Nested tuple:", nested_tuple)
print("Length:", len(nested_tuple))
# Access nested elements
print(f"\nFirst inner tuple: {nested_tuple[0]}")
print(f"Element at [0][1]: {nested_tuple[0][1]}")
print(f"Element at [2][2]: {nested_tuple[2][2]}")
# Create tuple of mixed nested types
mixed_nested = (5, "Hello", (15, 25, 35), [40, 50], (True, False))
print(f"\nMixed nested: {mixed_nested}")
# Iterate through nested tuple
print("\nIterating through nested tuple:")
for inner in nested_tuple:
for value in inner:
print(value, end=" ")
print()