As you already noted, they are all functionally equivalent.
Python tuples can be created using only a comma ,with parentheses as a useful way to distinguish between them.
For example, note:
>>> x = 1,2,3
>>> print x, type(x)
(1, 2, 3) <type 'tuple'>
>>> x = (1)
>>> print x, type(x)
1 <type 'int'>
>>> x = 1,
>>> print x, type(x)
(1,) <type 'tuple'>
>>> x = (1,)
>>> print x, type(x)
(1,) <type 'tuple'>
, .
, .
, , :
latitude, longitude = (23.000, -10.993)
:
latitude, longitude = geo-point # Where geo point is (23.3,38.3) or [12.2,83.33]
, , :
first_name, last_name, address, date_of_birth, favourite_icecream = ...
user764357