varT = (value1, value2, value3)
=> Initialize a tuplevarT = (value)
=> Considered as a integervarT = (value,)
=> Considered as a tuplevarT[N]
=> Returns value of N-1 elementvarT[-N]
=> Accessing element of (len(varT)-N-1) positionvarT[N1:N2:N3]
=> Access elements from N1 to (N2-1) jumping N3 indexesvarT3 = varT1 + varT2
=> Concatenation of the tupleslen(varT)
=> Returns length of tuplevarT.count(value)
=> Returns the count of valuevarT.index(value)
=> Returns index of first occurrence of the valuevarT.index(value, N1, N2)
=> Starting & end index are N1 & N2max(varT)
=> Returns max elementmin(varT)
=> Returns min elementw, x, y,..... = varT
=> Unpacking the tuple into the variables if value in varT:
# statements
else:
# statements
varT = (value1, value2)
temp = list(varT)
# statements
varT = tuple(temp)