"ast" <[email protected]> a écrit dans le message de 
news:[email protected]...
Hello,
At the end of the last line of the following program,
there is a comma, I dont understand why ?

Thx


from cx_Freeze import setup, Executable

# On appelle la fonction setup
setup(
   name = "salut",
   version = "0.1",
   description = "Ce programme vous dit bonjour",
   executables = [Executable("salut.py")],    #  <--- HERE
)



Ok its understood, it's a 1 element only tuple

example:

A = 5,
A
(5,)

A = (6)
A
6

--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to