Glossary
Glossary of terms
Glossary of terms
In the glossary there are words and their explanation in simple english
Browse the glossary using this index
Special | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | ALL
T |
---|
tupleA tuple is a sequence of immutable Python objects. Tuples are sequences, just like lists. The differences between tuples and lists are, the tuples cannot be changed unlike lists and tuples use parentheses, whereas lists use square brackets | ||
typeA sort or category of data that can be represented by Python. Any variable we use has a type of: string, integer, long, floating point, list, tuple, or dictionary. | ||