If we have :
K = [3,4,5]
T = (3,4,5)
and we call these commands :
print(type(K))
print(type(T))
we have these prints :
<class 'list'>
<class 'tuple'>
I know that K is a list and T is a tuple, but I'm not sure whether K or T are also classes or not ? We have commands like K.append() and similar commands, this makes me unsure about the concept.