Tuples

A 
tuple
 
is 
a 
collection 
that 
is 
ordered 
and 
unchangeable.
Tuples 
are 
written 
with 
the 
round 
()
 
brackets.
Since 
a 
tuple 
is 
indexed, 
tuples 
can 
have 
items 
with 
the 
same 
value.
Tuples 
can 
also 
be 
iterated 
over 
using 
loops.
tuple_name = (values)
tuple1 = ("abc", 34, True, 40, "male")

print(tuple1)