ZetCode

Julia Tuples Tutorial

last modified March 3, 2025

Tuples in Julia are immutable, ordered collections of elements. They are similar to arrays but cannot be modified after creation. Tuples are useful for grouping related data together.

Tuples are created using parentheses () and can contain elements of different types. They are often used for returning multiple values from functions.

Creating a Tuple

This example demonstrates how to create a tuple.

main.jl
t = (1, 2, 3)

The tuple t contains three integers: 1, 2, and 3.

Accessing Tuple Elements

This example shows how to access elements of a tuple.

main.jl
t = (10, 20, 30)
println(t[2])  # Output: 20

The second element of the tuple t is accessed using t[2].

Tuple with Mixed Types

This example demonstrates a tuple with elements of different types.

main.jl
t = (1, "hello", 3.14)

The tuple t contains an integer, a string, and a floating-point number.

Single-Element Tuple

This example shows how to create a tuple with a single element.

main.jl
t = (42,)

A single-element tuple requires a trailing comma to distinguish it from a parenthesized expression.

Tuple Unpacking

This example demonstrates how to unpack a tuple into variables.

main.jl
t = (1, 2, 3)
a, b, c = t
println(a, b, c)  # Output: 1 2 3

The tuple t is unpacked into variables a, b, and c.

Named Tuples

This example shows how to create a named tuple.

main.jl
t = (name="Julia", version=1.8)
println(t.name)  # Output: Julia

Named tuples allow accessing elements by name, making the code more readable.

Tuple Concatenation

This example demonstrates how to concatenate two tuples.

main.jl
t1 = (1, 2)
t2 = (3, 4)
t3 = (t1..., t2...)
println(t3)  # Output: (1, 2, 3, 4)

The tuples t1 and t2 are concatenated into t3.

Tuple Length

This example shows how to get the length of a tuple.

main.jl
t = (1, 2, 3, 4)
println(length(t))  # Output: 4

The length function returns the number of elements in the tuple.

Tuple Iteration

This example demonstrates how to iterate over a tuple.

main.jl
t = (1, 2, 3)
for element in t
    println(element)
end

The for loop iterates over each element in the tuple t.

Tuple as Function Arguments

This example shows how to use a tuple as function arguments.

main.jl
function add(a, b)
    return a + b
end

t = (10, 20)
println(add(t...))  # Output: 30

The tuple t is unpacked and passed as arguments to the add function.

Best Practices for Tuples

Source

Julia Documentation

In this article, we have explored various examples of using tuples in Julia, including creation, accessing elements, and advanced features like named tuples.

Author

My name is Jan Bodnar, and I am a passionate programmer with extensive programming experience. I have been writing programming articles since 2007. To date, I have authored over 1,400 articles and 8 e-books. I possess more than ten years of experience in teaching programming.

List all Julia tutorials.