The following example code demonstrates How to Create a Tuple in Python.
Since it is not possible to assign values to a specific element of a tuple. Therefore, the corresponding statements in the following code will result in an error.
nm = "Joe"
print(nm)
#nm[0] = 'C'
nma = ('J', 'O', 'E', 'BDN')
print(nma)
#nma[0] = 'HRY'
Output
More examples on tuples are given here.
Further Reading
Examples of OpenCV Library in Python
A Brief Introduction of Pandas Library in Python