mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-25 11:17:50 +01:00
13 lines
96 B
Plaintext
13 lines
96 B
Plaintext
tuple()
|
|
tuple(1)
|
|
(1, 2)
|
|
(1, 2)
|
|
(1, 2, 3)
|
|
(1, '2', 3)
|
|
(1, (2, 3), 4)
|
|
(1, (2, (3, 4)), 5)
|
|
2
|
|
4
|
|
4
|
|
5
|