IsTuple
Zur Navigation springen
Zur Suche springen
Beschreibung
isTuple gibt wahr(true) zurück falls der angegebene Parameter ein Tupel, nicht wahr(false) ansonst.
Syntax
isTuple(a)
Parameter
- a - Tupel
Return Value
- Gibt True oder False zurück.
Beispiele
<math>isTuple(tuple(2,3,4,5,6,7))</math> --> returns <math>True</math>
<math>isTuple(tuple())</math> --> returns <math>True</math>
<math>isTuple(list(2,3,4,5,6,7))</math> --> returns <math>False</math>
<math>isTuple(2)</math> --> returns <math>False</math>