Perfect! In Python, tuples are also frequently used as "records", i.e., sets of values which describe a real-world object, such as a person, an event, a machine, and so on.
For instance, here is a tuple which represents a lecture at a university:
# (title, lecturer, room)
economy_lecture = ('Intro to Economy', 'John Twain', 208)
Another example shows how we can represent a person:
# (name, age, gender)
person = ('Anne', 32, 'female')
In the following explanations, we'll be using tuples to represent cars. Each tuple will store the car's make, price (in USD), and mileage (in kilometers):
car_to_sell = ('Volvo', 18000, 137000)