Python: working with tuples
Example:
t = (1, "two", 3.0)
Tuples are immutable sequences in Python.
Solution:
print(t[1]) # Outputs: two
Example: Solution:Python: working with tuples
Tuples are immutable sequences in Python.
t = (1, "two", 3.0)
print(t[1]) # Outputs: two