Namya Shahbigsmoke.hashnode.devยทJul 17, 2022Python Tuple MethodsA tuple is an immutable list of values. # Both are same t1 = ('a', 'b', 'c') t1 = 'a', 'b', 'c' NOTE THAT A single value in parentheses is not a tuple To create a single value tuple it is necessary to have a trailing comma. a = ('b') # Not a tuple, ...57 readsPythonAdd a thoughtful commentNo comments yetBe the first to start the conversation.