Program Console Vignaankosh.com
Execution Panel
Console is empty.
Convert string to 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.
# Convert string to tuple using tuple()
text = "Python"
print("Original string:", text)
# Convert string to tuple of characters
char_tuple = tuple(text)
print("Tuple of characters:", char_tuple)
# Convert space-separated string to tuple
words_str = "apple banana cherry mango"
words_tuple = tuple(words_str.split())
print(f"\nString: '{words_str}'")
print(f"Tuple of words: {words_tuple}")
# Convert comma-separated string
csv = "Red,Green,Blue,Yellow"
colors_tuple = tuple(csv.split(','))
print(f"\nCSV string: '{csv}'")
print(f"Tuple: {colors_tuple}")