fix(curriculum): print command output for tuples lesson (#63889)

This commit is contained in:
Bhavik Ostwal
2025-11-17 04:31:37 +01:00
committed by GitHub
parent 359e3b6125
commit 33a0604c04
@@ -92,7 +92,7 @@ If you need to collect any remaining elements from a tuple, you can use the aste
developer = ('Alice', 34, 'Rust Developer')
name, *rest = developer
print(name, rest) # 'Alice'
print(name) # 'Alice'
print(rest) # [34, 'Rust Developer']
```