Program Console Vignaankosh.com
Execution Panel
Console is empty.
Convert tuple to set is an interactive PYTHON dry run visualizer from the Sets 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.
# Convert tuple to set using set() constructor
my_tuple = (1, 2, 2, 3, 3, 4, 4, 4, 5)
print("Original tuple:", my_tuple)
print("Tuple length:", len(my_tuple))
# Convert to set (removes duplicates)
my_set = set(my_tuple)
print("\nConverted set:", my_set)
print("Set length:", len(my_set))
# Tuple with mixed types
mixed_tuple = ('a', 'b', 'a', 1, 2, 1, 'c')
mixed_set = set(mixed_tuple)
print(f"\nMixed tuple: {mixed_tuple}")
print(f"Mixed set: {mixed_set}")
# Convert back to tuple (unique)
unique_tuple = tuple(mixed_set)
print(f"Unique tuple: {unique_tuple}")