RE: Tuples Datatypes In Python

avatar

You are viewing a single comment's thread:

Tuples are useful to return multiple values from a function. There's clever stuff you can do with unpacking them, e.g.

c = (1,2,3)
x,y,z = c

I love that you can loop through all sorts of things in Python.

!LUV



0
0
0.000
0 comments